Skip to content

Instantly share code, notes, and snippets.

@string-dot-byte
Created December 1, 2020 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save string-dot-byte/84a9e140b0e1558c85e859dd9221d2ab to your computer and use it in GitHub Desktop.
Save string-dot-byte/84a9e140b0e1558c85e859dd9221d2ab to your computer and use it in GitHub Desktop.
Julia sine cosine visualisation
using Pkg;Pkg.add("Plots");using Plots;
plot(UnitRange(1, 500), [Float64(cos(x/25)) for x in UnitRange(1, 500)])
plot!(UnitRange(1, 500), [Float64(sin(x/25)) for x in UnitRange(1, 500)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment