changeset 6517:a1ec359aef37

[project @ 2007-04-11 15:14:48 by jwe]
author jwe
date Wed, 11 Apr 2007 15:14:48 +0000
parents ce5caa673642
children 952c8b00525e
files doc/interpreter/container.txi doc/interpreter/octave.texi
diffstat 2 files changed, 11 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/container.txi	Wed Apr 11 14:26:39 2007 +0000
+++ b/doc/interpreter/container.txi	Wed Apr 11 15:14:48 2007 +0000
@@ -2,16 +2,9 @@
 @c This is part of the Octave manual.
 @c For copying conditions, see the file gpl.texi.
 
-@node Containers
-@chapter Containers
+@node Cell Arrays
+@chapter Cell Arrays
 @cindex containers
-
-@menu
-* Cell Arrays::                 
-@end menu
-
-@node Cell Arrays
-@section Cell Arrays
 @cindex cell arrays
 
 It can be both necessary and convenient to store several variables of
@@ -87,7 +80,7 @@
 @end menu
 
 @node Creating Cell Arrays
-@subsection Creating Cell Array
+@section Creating Cell Array
 
 The introductory example showed how to create a cell array containing
 currently available variables. In many situations, however, it is useful
@@ -145,7 +138,7 @@
 @DOCSTRING(mat2cell)
 
 @node Indexing Cell Arrays
-@subsection Indexing Cell Arrays
+@section Indexing Cell Arrays
 
 As shown in the introductory example elements can be inserted from cell
 arrays using the @samp{@{} and @samp{@}} operators. Besides the change
@@ -214,7 +207,7 @@
 @end example
 
 @node Cell Arrays of Strings
-@subsection Cell Arrays of Strings
+@section Cell Arrays of Strings
 
 One common use of cell arrays is to store multiple strings in the same
 variable. It is possible to store multiple strings in a character matrix
@@ -262,7 +255,7 @@
 @DOCSTRING(cellidx)
 
 @node Processing Data in Cell Arrays
-@subsection Processing Data in Cell Arrays
+@section Processing Data in Cell Arrays
 
 Data that is stored in a cell array can be processed in several ways
 depending on the actual data. The most simple way to process that data
--- a/doc/interpreter/octave.texi	Wed Apr 11 14:26:39 2007 +0000
+++ b/doc/interpreter/octave.texi	Wed Apr 11 15:14:48 2007 +0000
@@ -254,9 +254,12 @@
 * String Conversions::          
 * Character Class Functions::   
 
-Containers
+Cell Arrays
 
-* Cell Arrays::                 
+* Creating Cell Arrays::                 
+* Indexing Cell Arrays::
+* Cell Arrays of Strings::
+* Processing Data in Cell Arrays::
 
 Variables