[Scilab-users] Multiple 2D Plots in 3D Plane

Samuel Gougeon sgougeon at free.fr
Fri Jan 13 23:13:01 CET 2017


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

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/users/attachments/20170113/bf87f30a/attachment.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ffecjibi.png
Type: image/png
Size: 13307 bytes
Desc: not available
URL: <https://lists.scilab.org/pipermail/users/attachments/20170113/bf87f30a/attachment.png>


More information about the users mailing list