Make a plot in Julia's programming language

Is there any tool in Julia for drawing a shape like this can be done in MATLAB plot(x,y)

? A quick tour of the guide didn't give me anything.

+3


source to share


1 answer


Base Julia does not provide the build functionality that is provided by packages like



  • Gadfly.jl -Pkg.add("Gadfly")

  • PyPlot.jl - Pkg.add("PyPlot")

    but this requires Python and matplotlib

    .
  • Winston.jl -Pkg.add("Winston")

+4


source







All Articles