help-octave
[Top][All Lists]
Advanced

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

Re: three-dimensional matrices


From: A Scottedward Hodel
Subject: Re: three-dimensional matrices
Date: Thu, 13 Apr 2000 11:10:49 -0500

This is a frequent question; take a look at the archives on the octave
web page (see links below).

Short answer: can't do it in 2.0.xx.

Can do something like it in 2.1.xx using the "list" structure to
create a list of matrices.  This allows you to use your for loops as:

matlist = list( (your matrices here) );

for matnum = 1:Nmats
  thismat = nth(matlist,matnum);

  ## [manipulate matrix]

endfor

At 4:50 PM +0100 4/13/00, Filipa Figueira wrote:
Hello,

I'm using Octave version 2.0.14, which doesn't support three-dimensional
matrices. I would like to know if there is a new version of Octave that
allows you to use them. It would save me quite a lot of 'for' loops and
processing time. Do you have any other suggestions?

Thanks,

Filipa Figueira



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

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

--
A S Hodel Assoc. Prof. Dept Elect and Computer Eng, Auburn Univ,AL 36849-5201
On leave at NASA Marshall Space Flight Center (256) 544-1426
Address until 31 July 2000:Mail Code TD-55, MSFC, Alabama, 35812
http://www.eng.auburn.edu/~scotte



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

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



reply via email to

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