about summary refs log tree commit diff homepage
path: root/_assets/scripts/script2.jl
blob: 0fa6c42a000a8375c4487cf39695cb14b8f3aabc (plain) (blame)
1
2
3
4
using PyPlot
x = range(0, stop=1, length=50)
plot(x, sin.(2x).*exp.(-x/3))
savefig(joinpath(@__DIR__, "output", "script2.svg"))