help-octave
[Top][All Lists]
Advanced

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

Re: Interactive rotation of mesh


From: Quentin Spencer
Subject: Re: Interactive rotation of mesh
Date: Fri, 04 Feb 2005 08:57:12 -0600
User-agent: Mozilla Thunderbird 0.9 (X11/20041127)

If you use gnuplot version 4.0, you can use a mouse to rotate the mesh. You can also use the "view" command in octave-forge to change the angle.


Deepak, R. wrote:

I wrote this program to plot a mesh:
   % MODEL - Script to generate the long signature
   % By R. Deepak <http://research.iiit.ac.in/~masatran/>

   sequence = input('Sequence: ');
   n = input('n: ');
   long_signature  = signature_long(sequence, n)
   short_signature = signature_short(sequence, n)
   automatic_replot = 1;
   axis([1 columns(short_signature) 1 rows(short_signature) 0 
columns(long_signature)])
   mesh(
       1 : columns(short_signature),
       1 : rows(short_signature),
       short_signature
   )

Now, I want to allow the mesh to be rotated interactively in three
dimensions. What command should I use?



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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