help-octave
[Top][All Lists]
Advanced

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

Re: Functions as variables


From: Przemek Klosowski
Subject: Re: Functions as variables
Date: Thu, 16 Oct 2003 10:38:00 -0400 (EDT)

Octave strings are character arrays (see 
http://www.octave.org/doc/octave_6.html ),
 so putting them together works as expected:

 a=['abc','def']
                   a = abcdef
 size(a)
                   1  6

while 

 a=['abc';'def']
                   a = abc
                       def
 size(a)
                   2  3






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