Winston.jl icon indicating copy to clipboard operation
Winston.jl copied to clipboard

Contour plot

Open lindahua opened this issue 12 years ago • 1 comments

It is useful to have a contour plotting function, one that similar to MATLAB's.

lindahua avatar Jul 05 '13 21:07 lindahua

Thanks to @jverzani, basic contour plotting now works:

f(x,y) = sin(x)*sin(y)
x = linspace(-pi, pi, 50);
y = linspace(-pi, pi, 50);
c = Winston.contourc(f, x, y);
plot(c) |> Winston.tk

nolta avatar Sep 03 '13 20:09 nolta