drawing two meshes on one picture

Ivan Sutoris ivan.sutoris at gmail.com
Fri May 22 10:35:11 CDT 2009


On Fri, May 22, 2009 at 1:37 PM, Vasil'ev Michail <dlia-spama at mail.ru> wrote:
> Hi!
> I want to draw two meshes on one picture, one under another. I have 6
> matrices, X1, Y1, Z1, X2, Y2, Z2. Is there any ability to draw a
> mesh(X1, Y1, Z1) under mesh(X2, Y2, Z2)?
>

Hi

I'm not sure if this is what you need, but you can use "hold on" and
second mesh will be plotted in the same figure without erasing
previous content:

  figure
  mesh(X1, Y1, Z1)
  hold on
  mesh(X2, Y2, Z2)

Regards
Ivan Sutoris


More information about the Help-octave mailing list