Reputation: 3832
Is there any tool in Julia to plot a figure like it can be done in MATLAB plot(x,y)
? A brief look in manual has given me nothing.
Upvotes: 3
Views: 766
Reputation: 11654
Base Julia doesn't provide plotting functionality, that is provided by packages, e.g.
Pkg.add("Gadfly")
Pkg.add("PyPlot")
, but needs Python and matplotlib
installed.Pkg.add("Winston")
Upvotes: 4