help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: drawing two meshes on one picture


From: Ivan Sutoris
Subject: Re: drawing two meshes on one picture
Date: Fri, 22 May 2009 17:35:11 +0200

On Fri, May 22, 2009 at 1:37 PM, Vasil'ev Michail <address@hidden> 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]