<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">Hello Werner,<br>
      <br>
      Le 13/01/2017 11:45, Werner a écrit :<br>
    </div>
    <blockquote cite="mid:1484304323619-4035339.post@n3.nabble.com"
      type="cite">
      <pre wrap="">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).

<a class="moz-txt-link-rfc2396E" href="http://mailinglists.scilab.org/file/n4035339/example.png"><http://mailinglists.scilab.org/file/n4035339/example.png></a> </pre>
    </blockquote>
    <br>
    You may use for instance plot3d3(), like in the following example:<br>
    <br>
    <tt>[X, Y] = meshgrid(0:0.3:10, 0:0.1:10);
    </tt><tt><br>
    </tt><tt>clf
    </tt><tt><br>
    </tt><tt>plot3d3(X,Y,5*cos(X.*Y/3).*exp(-abs(Y/3)))
    </tt><tt><br>
    </tt><tt>ax = gca();
    </tt><tt><br>
    </tt><tt>ax.children(1).visible = "off";
    </tt><tt><br>
    </tt><br>
    <img src="cid:part1.08020703.02010103@free.fr" alt="" height="228"
      width="302"><br>
    <br>
    HTH<br>
    Samuel<br>
    <br>
  </body>
</html>