Hello Werner,
Le 13/01/2017 11:45, Werner a écrit :
Dear members,
I want to put a few FFT results for different cases into one 3D plot. I
searched the whole forum but cant find a solution.
The final result have to look like this(without the circles at each point).
<http://mailinglists.scilab.org/file/n4035339/example.png>
You may use for instance plot3d3(), like in the following example:
[X, Y] = meshgrid(0:0.3:10, 0:0.1:10);
clf
plot3d3(X,Y,5*cos(X.*Y/3).*exp(-abs(Y/3)))
ax = gca();
ax.children(1).visible = "off";
HTH
Samuel
_______________________________________________
users mailing list
[email protected]
http://lists.scilab.org/mailman/listinfo/users