On Monday, December 1, 2014 9:07:10 AM UTC-5, Giacomo Kresak wrote:
>
> Do you know if plt.plot is the good way to go? Not able to use plot3d or
> plot3D with Julia (PyPlot)!
>
Matplotlib's plot3D function is indeed exported by PyPlot. (You can't
access it via plt.plot3D because it is not actually in the
matplotlib.pyplot module, it is in mpl_toolkits.mplot3d) Just call it via,
for example:
θ = linspace(0,6π,300)
plot3D(cos(θ), sin(θ), θ)
There are also other 3d plotting functions from Matplotlib, e.g.
surf(x,y,z) to do a surface plot.