Weave.jl/examples/plots_example.mdw

15 lines
104 B
Plaintext
Raw Normal View History

2016-10-31 09:52:48 +01:00
<<>>=
using Plots
pyplot()
x = linspace(0, 2π, 2056)
@
<<>>=
plot(sinc(x))
@
<<>>=
plot(-sinc(x))
@