Skip to content

Instantly share code, notes, and snippets.

View string-dot-byte's full-sized avatar

Viken Manoukian string-dot-byte

View GitHub Profile
@string-dot-byte
string-dot-byte / main.jl
Created December 1, 2020 14:57
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)])