help-octave
[Top][All Lists]
Advanced

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

Re: eignenvalue for nonsymmetric matrix


From: Mike Miller
Subject: Re: eignenvalue for nonsymmetric matrix
Date: Thu, 7 Apr 2005 12:26:56 -0500 (CDT)


  octave:1> stiff = [1,2,3,4;5,6,7,8;9,10,11,12;13,14,15,16]

By the way, this gives the same result:

reshape([1:16],4,4)'

and it's extensible:

N=4; stiff=reshape([1:N^2],N,N)'

Just change N.  You can then do things like this:

N=30; stiff=reshape([1:N^2],N,N)'; eig(stiff)

Mike



-------------------------------------------------------------
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]