help-octave
[Top][All Lists]
Advanced

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

Re: lists struture in GNU Octave


From: taltman
Subject: Re: lists struture in GNU Octave
Date: Tue, 21 Oct 2003 09:01:47 -0700 (PDT)

Hello,

Check out the following page:

http://octave.sourceforge.net/index/language.html#Lists

Note that, a la' LISP, you can nest lists within lists:

***

octave> list ( 1, 2, list(3) )
ans =
(
  [1] = 1
  [2] = 2
  [3] =
  (
    [1] = 3
  )
)

***

This allows, in addition to array and hash/"associative
array"/structure data types, a "tree-type" of data structure.

Hope this helps,

~Tomer Altman
Little LISPer


On Oct 21, 2003 at 11:25am, Isabel Brito wrote:

Isabel >Date: Tue, 21 Oct 2003 11:25:10 +0200
Isabel >From: Isabel Brito <address@hidden>
Isabel >To: address@hidden
Isabel >Subject: lists struture
Isabel >Resent-Date: Tue, 21 Oct 2003 04:25:25 -0500
Isabel >Resent-From: address@hidden
Isabel >
Isabel >Hello
Isabel >
Isabel >I'm looking for functions that handle lists structures.
Isabel >Where could I find them?
Isabel >
Isabel >Thanks a lot.
Isabel >
Isabel >
Isabel >Isabel
Isabel >
Isabel >
Isabel >
Isabel >-------------------------------------------------------------
Isabel >Octave is freely available under the terms of the GNU GPL.
Isabel >
Isabel >Octave's home on the web:  http://www.octave.org
Isabel >How to fund new projects:  http://www.octave.org/funding.html
Isabel >Subscription information:  http://www.octave.org/archive.html
Isabel >-------------------------------------------------------------
Isabel >
Isabel >




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