help-octave
[Top][All Lists]
Advanced

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

Re: Strange matrix size


From: Robert A. Macy
Subject: Re: Strange matrix size
Date: Sun, 05 Dec 2004 17:28:10 -0800

ok, ok.  

The script contained a 

for loop using i=1:190 also

Well there's a lesson there.  Use functions, not script,
eh?

                 - Robert -

On Sun, 05 Dec 2004 10:49:56 -0800
 "Robert A. Macy" <address@hidden> wrote:
> I have a matrix, padj, whose size is 3 by 319.
> 
> When used with the following script...
> 
> display=zeros(2,319);
> for i=1:2
>   display(i,:)=padj(1,:);
> endfor
> 
> the script creates a matrix, display, whose size is 2 by
> 319, as expected.  
> 
> However, if I embed a script in the loop the sequence
> fails...
> 
> display=zeros(2,319);
> for i=1:2
>   SCRIPT
>   display(i,:)=padj(1,:);
> endfor
> 
> NOTE: SCRIPT.m is a script file that calculates values of
> padj
> 
> somehow this sequence creates a matrix, display, that is
> 319 by 319?!
> 
> I'm running binary octave 2.1.50a-inst.exe on Win98
> 
> I tried using source("SCRIPT.m") for both, and nothing
> makes it work properly.  
> 
> Did I implement the matrix notation incorrectly?  
> 
> Any ideas?
> 
>                 - Robert -
> 
> 
> 
>
-------------------------------------------------------------
> 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
>
-------------------------------------------------------------
> 



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