Mercurial > hg > octave-lyh
annotate doc/interpreter/octave.texi @ 14531:8985cbbd2fe4
doc: Periodic spellcheck of documentation
* aspell-octave.en.pws: Add new words bitmapped, splinefit, xc, and yc
to dictionary.
* install.txi, octave.texi, poly.txi, splinefit.m: Correct typos.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 05 Apr 2012 22:48:57 -0700 |
parents | 5bd9e47e9277 |
children | 4e9dc46d4125 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14116
diff
changeset
|
1 % Copyright (C) 1996-2012 John W. Eaton |
7018 | 2 % |
3 % This file is part of Octave. | |
4 % | |
5 % Octave is free software; you can redistribute it and/or modify it | |
6 % under the terms of the GNU General Public License as published by the | |
7 % Free Software Foundation; either version 3 of the License, or (at | |
8 % your option) any later version. | |
9 % | |
10 % Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 % ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 % FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 % for more details. | |
14 % | |
15 % You should have received a copy of the GNU General Public License | |
16 % along with Octave; see the file COPYING. If not, see | |
17 % <http://www.gnu.org/licenses/>. | |
3403 | 18 |
19 \input texinfo | |
20 @setfilename octave.info | |
21 | |
3405 | 22 @c The following macro is used for the on-line help system, but we don't |
23 @c want lots of `See also: foo, bar, and baz' strings cluttering the | |
24 @c printed manual (that information should be in the supporting text for | |
3406 | 25 @c each group of functions and variables). |
3405 | 26 |
27 @macro seealso {args} | |
6620 | 28 @iftex |
29 @vskip 2pt | |
30 @end iftex | |
31 @ifnottex | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
32 @c Texinfo @sp should work but in practice produces ugly results for HTML. |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
33 @c A simple blank line produces the correct behavior. |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
34 @c @sp 1 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
35 |
6620 | 36 @end ifnottex |
5642 | 37 @noindent |
6620 | 38 @strong{See also:} \args\. |
3405 | 39 @end macro |
40 | |
10791
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
41 @c The following macro marks words that aspell should ignore during |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
42 @c spellchecking. Within Texinfo it has no effect as it merely replaces |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
43 @c the macro call with the argument itself. |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
44 |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
45 @macro nospell {arg} |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
46 \arg\ |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
47 @end macro |
3140cb7a05a1
Add spellchecker scripts for Octave and run spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
10599
diff
changeset
|
48 |
13780
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
49 @c The following macro works around a situation where the Info/plain text |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
50 @c expansion of the @code{XXX} macro is `XXX'. The use of the apostrophe |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
51 @c can be confusing if the code segment itself ends with a transpose operator. |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
52 @ifinfo |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
53 @macro xcode{arg} |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
54 \arg\ |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
55 @end macro |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
56 @end ifinfo |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
57 @ifnotinfo |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
58 @macro xcode{arg} |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
59 @code{\arg\} |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
60 @end macro |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
61 @end ifnotinfo |
990762e784fe
Fix confusing interaction between @code macro and transpose operator (') in documentation (Bug #34661).
Rik <octave@nomad.inbox5.com>
parents:
12761
diff
changeset
|
62 |
3403 | 63 @ifinfo |
64 @format | |
65 START-INFO-DIR-ENTRY | |
10599
d0e0bb2ebebb
Remove tabs in .txi files causing problems with pdf formatting.
Rik <octave@nomad.inbox5.com>
parents:
10452
diff
changeset
|
66 * Octave: (octave). Interactive language for numerical computations. |
d0e0bb2ebebb
Remove tabs in .txi files causing problems with pdf formatting.
Rik <octave@nomad.inbox5.com>
parents:
10452
diff
changeset
|
67 |
3403 | 68 END-INFO-DIR-ENTRY |
69 @end format | |
70 @end ifinfo | |
71 | |
72 @c Settings for printing on 8-1/2 by 11 inch paper: | |
73 @c ----------------------------------------------- | |
74 | |
75 @setchapternewpage odd | |
76 | |
77 @c Settings for small book format: | |
78 @c ------------------------------ | |
79 | |
80 @ignore | |
81 @smallbook | |
82 @setchapternewpage odd | |
83 @finalout | |
84 @iftex | |
85 @cropmarks | |
86 @end iftex | |
87 @end ignore | |
88 | |
89 @defindex op | |
90 | |
9908 | 91 @c The version.texi file doesn't include a chapter, so it must not be |
92 @c included if you want to run the Emacs function | |
93 @c texinfo-multiple-files-update. | |
94 @include version.texi | |
3403 | 95 |
96 @settitle GNU Octave | |
97 | |
5423 | 98 @ifnottex |
3403 | 99 |
7018 | 100 Copyright @copyright{} 1996, 1997, 1999, 2000, 2001, 2002, 2005, 2006, |
12343
38384a0f75c0
Update copyright on written documentation to 2011
Rik <octave@nomad.inbox5.com>
parents:
12336
diff
changeset
|
101 2007, 2011 John W. Eaton. |
3403 | 102 |
103 Permission is granted to make and distribute verbatim copies of | |
104 this manual provided the copyright notice and this permission notice | |
105 are preserved on all copies. | |
106 | |
107 @ignore | |
108 Permission is granted to process this file through Tex and print the | |
109 results, provided the printed document carries copying permission | |
110 notice identical to this one except for the removal of this paragraph | |
111 (this paragraph not being relevant to the printed manual). | |
112 | |
113 @end ignore | |
114 Permission is granted to copy and distribute modified versions of | |
115 this manual under the conditions for verbatim copying, provided that | |
116 the entire resulting derived work is distributed under the terms of | |
117 a permission notice identical to this one. | |
118 | |
119 Permission is granted to copy and distribute translations of this | |
120 manual into another language, under the above conditions for | |
121 modified versions. | |
5423 | 122 @end ifnottex |
3403 | 123 |
124 @titlepage | |
125 @title GNU Octave | |
126 @subtitle A high-level interactive language for numerical computations | |
127 @subtitle Edition 3 for Octave version @value{VERSION} | |
12336
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
128 @subtitle February 2011 |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
129 @sp 2 |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
130 @multitable @columnfractions 0.4 0.025 0.65 |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
131 @item |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
132 @flushright @image{octave_logo,2.1in} @end flushright |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
133 @tab |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
134 @c this is a spacer column |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
135 @tab |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
136 @sp 8 |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
137 @titlefont{Free Your Numbers} |
af2b18354a8e
Add new Octave O logo to Mercurial and build process.
Rik <octave@nomad.inbox5.com>
parents:
12226
diff
changeset
|
138 @end multitable |
3403 | 139 @author John W. Eaton |
6966 | 140 @author David Bateman |
141 @author S@o{}ren Hauberg | |
3403 | 142 @page |
143 @vskip 0pt plus 1filll | |
7018 | 144 Copyright @copyright{} 1996, 1997, 1999, 2000, 2001, 2002, 2005, 2006, |
12343
38384a0f75c0
Update copyright on written documentation to 2011
Rik <octave@nomad.inbox5.com>
parents:
12336
diff
changeset
|
145 2007, 2011 John W. Eaton. |
3403 | 146 |
147 This is the third edition of the Octave documentation, and is consistent | |
148 with version @value{VERSION} of Octave. | |
149 | |
150 Permission is granted to make and distribute verbatim copies of | |
151 this manual provided the copyright notice and this permission notice | |
152 are preserved on all copies. | |
153 | |
154 Permission is granted to copy and distribute modified versions of this | |
155 manual under the conditions for verbatim copying, provided that the entire | |
156 resulting derived work is distributed under the terms of a permission | |
157 notice identical to this one. | |
158 | |
159 Permission is granted to copy and distribute translations of this manual | |
160 into another language, under the same conditions as for modified versions. | |
161 | |
162 Portions of this document have been adapted from the @code{gawk}, | |
163 @code{readline}, @code{gcc}, and C library manuals, published by the Free | |
5307 | 164 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
165 02110-1301--1307, USA. | |
3403 | 166 @end titlepage |
167 | |
3606 | 168 @contents |
169 | |
5423 | 170 @ifnottex |
4167 | 171 @node Top |
3403 | 172 @top |
173 | |
174 This manual documents how to run, install and port GNU Octave, as well | |
175 as its new features and incompatibilities, and how to report bugs. | |
176 It corresponds to GNU Octave version @value{VERSION}. | |
5423 | 177 @end ifnottex |
3403 | 178 |
5424 | 179 @c ------------------------------------------------------------------------ |
180 | |
3403 | 181 @menu |
182 * Preface:: | |
183 * Introduction:: A brief introduction to Octave. | |
184 * Getting Started:: | |
185 * Data Types:: | |
186 * Numeric Data Types:: | |
187 * Strings:: | |
6837 | 188 * Data Containers:: |
3403 | 189 * Variables:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
190 * Expressions:: |
3403 | 191 * Evaluation:: |
192 * Statements:: Looping and program flow control. | |
193 * Functions and Scripts:: | |
6667 | 194 * Errors and Warnings:: |
4178 | 195 * Debugging:: |
3403 | 196 * Input and Output:: |
197 * Plotting:: | |
198 * Matrix Manipulation:: | |
199 * Arithmetic:: | |
14116
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
200 * Linear Algebra:: |
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
201 * Vectorization and Faster Code Execution:: |
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
202 * Nonlinear Equations:: |
8839
fcba62cc4549
add chapter about diagonal and permutation matrices to manual
Jaroslav Hajek <highegg@gmail.com>
parents:
8817
diff
changeset
|
203 * Diagonal and Permutation Matrices:: |
5164 | 204 * Sparse Matrices:: |
6741 | 205 * Numerical Integration:: |
3403 | 206 * Differential Equations:: |
207 * Optimization:: | |
208 * Statistics:: | |
209 * Sets:: | |
210 * Polynomial Manipulations:: | |
6549 | 211 * Interpolation:: |
6558 | 212 * Geometry:: |
3403 | 213 * Signal Processing:: |
214 * Image Processing:: | |
215 * Audio Processing:: | |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
216 * Object Oriented Programming:: |
13943
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
217 * GUI Development:: |
3403 | 218 * System Utilities:: |
6570 | 219 * Packages:: |
220 * Dynamically Linked Functions:: | |
5582 | 221 * Test and Demo Functions:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
222 * Tips and Standards:: |
8055
d51c3541be28
contrib.txi: new documentation for contributors
Jaroslav Hajek <highegg@gmail.com>
parents:
7988
diff
changeset
|
223 * Contributing Guidelines:: |
10214
57e24c53e063
doc/interpreter/obsolete.texi: new file; list removed functions
John W. Eaton <jwe@octave.org>
parents:
9908
diff
changeset
|
224 * Obsolete Functions:: |
3403 | 225 * Trouble:: If you have trouble installing Octave. |
226 * Installation:: How to configure, compile and install Octave. | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
227 * Emacs Octave Support:: |
12573
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
228 * Grammar and Parser:: |
3403 | 229 * Copying:: The GNU General Public License. |
230 * Concept Index:: An item for each concept. | |
231 * Function Index:: An item for each documented function. | |
232 * Operator Index:: An item for each documented operator. | |
233 | |
234 @detailmenu | |
235 --- The Detailed Node Listing --- | |
236 | |
237 Preface | |
238 | |
3453 | 239 * Acknowledgements:: |
240 * How You Can Contribute to Octave:: | |
241 * Distribution:: | |
242 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
243 Introduction |
3453 | 244 |
245 * Running Octave:: | |
246 * Simple Examples:: | |
247 * Conventions:: | |
248 | |
249 Conventions | |
250 | |
251 * Fonts:: | |
252 * Evaluation Notation:: | |
253 * Printing Notation:: | |
254 * Error Messages:: | |
255 * Format of Descriptions:: | |
256 | |
257 Format of Descriptions | |
258 | |
259 * A Sample Function Description:: | |
260 * A Sample Command Description:: | |
261 * A Sample Variable Description:: | |
262 | |
263 Getting Started | |
264 | |
6620 | 265 * Invoking Octave from the Command Line:: |
3453 | 266 * Quitting Octave:: |
267 * Getting Help:: | |
268 * Command Line Editing:: | |
269 * Errors:: | |
270 * Executable Octave Programs:: | |
271 * Comments:: | |
272 | |
6620 | 273 Invoking Octave from the Command Line |
3453 | 274 |
275 * Command Line Options:: | |
276 * Startup Files:: | |
277 | |
278 Command Line Editing | |
279 | |
280 * Cursor Motion:: | |
281 * Killing and Yanking:: | |
282 * Commands For Text:: | |
283 * Commands For Completion:: | |
284 * Commands For History:: | |
285 * Customizing readline:: | |
286 * Customizing the Prompt:: | |
287 * Diary and Echo Commands:: | |
288 | |
9035
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
289 Comments |
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
290 |
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
291 * Single Line Comments:: |
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
292 * Block Comments:: |
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
293 * Comments and the Help System:: |
57649dcecb55
Documentation cleanup of basics.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
294 |
3453 | 295 Data Types |
296 | |
297 * Built-in Data Types:: | |
298 * User-defined Data Types:: | |
299 * Object Sizes:: | |
300 | |
301 Built-in Data Types | |
302 | |
303 * Numeric Objects:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
304 * Missing Data:: |
3453 | 305 * String Objects:: |
306 * Data Structure Objects:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
307 * Cell Array Objects:: |
3453 | 308 |
309 Numeric Data Types | |
310 | |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7787
diff
changeset
|
311 * Matrices:: |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7787
diff
changeset
|
312 * Ranges:: |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7787
diff
changeset
|
313 * Single Precision Data Types:: |
6549 | 314 * Integer Data Types:: |
6781 | 315 * Bit Manipulations:: |
7984
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7787
diff
changeset
|
316 * Logical Values:: |
bbaa5d7d0143
Some documentation updates
David Bateman <dbateman@free.fr>
parents:
7787
diff
changeset
|
317 * Promotion and Demotion of Data Types:: |
3453 | 318 * Predicates for Numeric Objects:: |
319 | |
320 Matrices | |
321 | |
322 * Empty Matrices:: | |
323 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
324 Integer Data Types |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
325 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
326 * Integer Arithmetic:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
327 |
3453 | 328 Strings |
329 | |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
330 * Escape Sequences in String Constants:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
331 * Character Arrays:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
332 * Creating Strings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
333 * Comparing Strings:: |
6623 | 334 * Manipulating Strings:: |
3453 | 335 * String Conversions:: |
336 * Character Class Functions:: | |
337 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
338 Creating Strings |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
339 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
340 * Concatenating Strings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
341 * Conversion of Numerical Data to Strings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
342 |
6837 | 343 Data Containers |
3453 | 344 |
12596
5161d02c96b7
doc: Add help text for dynamic naming "(var)" of structure fields.
Rik <octave@nomad.inbox5.com>
parents:
12573
diff
changeset
|
345 * Structures:: |
6837 | 346 * Cell Arrays:: |
347 * Comma Separated Lists:: | |
3453 | 348 |
12596
5161d02c96b7
doc: Add help text for dynamic naming "(var)" of structure fields.
Rik <octave@nomad.inbox5.com>
parents:
12573
diff
changeset
|
349 Structures |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
350 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
351 * Basic Usage and Examples:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
352 * Structure Arrays:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
353 * Creating Structures:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
354 * Manipulating Structures:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
355 * Processing Data in Structures:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
356 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
357 Cell Arrays |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
358 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
359 * Basic Usage of Cell Arrays:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
360 * Creating Cell Arrays:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
361 * Indexing Cell Arrays:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
362 * Cell Arrays of Strings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
363 * Processing Data in Cell Arrays:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
364 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
365 Comma Separated Lists |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
366 |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
367 * Comma Separated Lists Generated from Cell Arrays:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
368 * Comma Separated Lists Generated from Structure Arrays:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
369 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
370 Variables |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
371 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
372 * Global Variables:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
373 * Persistent Variables:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
374 * Status of Variables:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
375 |
3453 | 376 Expressions |
377 | |
378 * Index Expressions:: | |
379 * Calling Functions:: | |
380 * Arithmetic Ops:: | |
381 * Comparison Ops:: | |
382 * Boolean Expressions:: | |
383 * Assignment Ops:: | |
384 * Increment Ops:: | |
385 * Operator Precedence:: | |
386 | |
14033
dfbf6a49847c
doc: Update documentation on indexing expressions
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
387 Index Expressions |
dfbf6a49847c
doc: Update documentation on indexing expressions
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
388 |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
389 * Advanced Indexing:: |
14033
dfbf6a49847c
doc: Update documentation on indexing expressions
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
390 |
3453 | 391 Calling Functions |
392 | |
393 * Call by Value:: | |
394 * Recursion:: | |
395 | |
396 Boolean Expressions | |
397 | |
398 * Element-by-element Boolean Operators:: | |
399 * Short-circuit Boolean Operators:: | |
400 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
401 Evaluation |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
402 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
403 * Calling a Function by its Name:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
404 * Evaluation in a Different Context:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
405 |
3453 | 406 Statements |
407 | |
9038
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
408 * The @code{if} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
409 * The @code{switch} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
410 * The @code{while} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
411 * The @code{do-until} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
412 * The @code{for} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
413 * The @code{break} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
414 * The @code{continue} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
415 * The @code{unwind_protect} Statement:: |
fca0dc2fb042
Cleanup documentation files stmt.texi and func.texi
Rik <rdrider0-list@yahoo.com>
parents:
9035
diff
changeset
|
416 * The @code{try} Statement:: |
3453 | 417 * Continuation Lines:: |
418 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
419 The @code{switch} Statement |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
420 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
421 * Notes for the C Programmer:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
422 |
3453 | 423 The @code{for} Statement |
424 | |
425 * Looping Over Structure Elements:: | |
426 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
427 Functions and Scripts |
3453 | 428 |
429 * Defining Functions:: | |
430 * Multiple Return Values:: | |
431 * Variable-length Argument Lists:: | |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
432 * Ignoring Arguments:: |
3453 | 433 * Variable-length Return Lists:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
434 * Returning from a Function:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
435 * Default Arguments:: |
3453 | 436 * Function Files:: |
437 * Script Files:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
438 * Function Handles Inline Functions and Anonymous Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
439 * Commands:: |
3453 | 440 * Organization of Functions:: |
441 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
442 Function Files |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
443 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
444 * Manipulating the Load Path:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
445 * Subfunctions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
446 * Private Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
447 * Overloading and Autoloading:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
448 * Function Locking:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
449 * Function Precedence:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
450 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
451 Function Handles Inline Functions and Anonymous Functions |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
452 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
453 * Function Handles:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
454 * Anonymous Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
455 * Inline Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
456 |
6667 | 457 Errors and Warnings |
458 | |
459 * Handling Errors:: | |
460 * Handling Warnings:: | |
4178 | 461 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
462 Handling Errors |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
463 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
464 * Raising Errors:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
465 * Catching Errors:: |
12560
d6ad4ed57dda
Add onCleanup function to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12526
diff
changeset
|
466 * Recovering From Errors:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
467 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
468 Handling Warnings |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
469 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
470 * Issuing Warnings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
471 * Enabling and Disabling Warnings:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
472 |
4178 | 473 Debugging |
474 | |
6646 | 475 * Entering Debug Mode:: |
7787
6b521b1e3631
Add dbquit and make dbstep compatible. Use parser in debug mode to handle multi-line input
David Bateman <dbateman@free.fr>
parents:
7018
diff
changeset
|
476 * Leaving Debug Mode:: |
6646 | 477 * Breakpoints:: |
478 * Debug Mode:: | |
7787
6b521b1e3631
Add dbquit and make dbstep compatible. Use parser in debug mode to handle multi-line input
David Bateman <dbateman@free.fr>
parents:
7018
diff
changeset
|
479 * Call Stack:: |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
480 * Profiling:: |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
481 * Profiler Example:: |
6646 | 482 |
3453 | 483 Input and Output |
484 | |
485 * Basic Input and Output:: | |
486 * C-Style I/O Functions:: | |
487 | |
488 Basic Input and Output | |
489 | |
490 * Terminal Output:: | |
491 * Terminal Input:: | |
492 * Simple File I/O:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
493 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
494 Terminal Output |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
495 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
496 * Paging Screen Output:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
497 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
498 Simple File I/O |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
499 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
500 * Saving Data on Unexpected Exits:: |
3453 | 501 |
502 C-Style I/O Functions | |
503 | |
504 * Opening and Closing Files:: | |
505 * Simple Output:: | |
506 * Line-Oriented Input:: | |
507 * Formatted Output:: | |
508 * Output Conversion for Matrices:: | |
509 * Output Conversion Syntax:: | |
510 * Table of Output Conversions:: | |
511 * Integer Conversions:: | |
6554 | 512 * Floating-Point Conversions:: |
3453 | 513 * Other Output Conversions:: |
514 * Formatted Input:: | |
515 * Input Conversion Syntax:: | |
516 * Table of Input Conversions:: | |
517 * Numeric Input Conversions:: | |
518 * String Input Conversions:: | |
519 * Binary I/O:: | |
520 * Temporary Files:: | |
521 * EOF and Errors:: | |
522 * File Positioning:: | |
523 | |
524 Plotting | |
525 | |
9676 | 526 * Introduction to Plotting:: |
527 * High-Level Plotting:: | |
528 * Graphics Data Structures:: | |
529 * Advanced Plotting:: | |
3453 | 530 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
531 High-Level Plotting |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
532 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
533 * Two-Dimensional Plots:: |
12526
f8ea3eabcb85
Add daspect, pbaspect functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12525
diff
changeset
|
534 * Three-Dimensional Plots:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
535 * Plot Annotations:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
536 * Multiple Plots on One Page:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
537 * Multiple Plot Windows:: |
11254
31f8534eb055
Add reference to new saveas function in printed manual.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
538 * Printing and Saving Plots:: |
31f8534eb055
Add reference to new saveas function in printed manual.
Rik <octave@nomad.inbox5.com>
parents:
10791
diff
changeset
|
539 * Interacting with Plots:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
540 * Test Plotting Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
541 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
542 Two-Dimensional Plots |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
543 |
12526
f8ea3eabcb85
Add daspect, pbaspect functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12525
diff
changeset
|
544 * Axis Configuration:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
545 * Two-dimensional Function Plotting:: |
12761
13bcd62824a7
doc: Add documentation for gmres, rectangle to manual
Rik <octave@nomad.inbox5.com>
parents:
12612
diff
changeset
|
546 * Two-dimensional Geometric Shapes:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
547 |
12526
f8ea3eabcb85
Add daspect, pbaspect functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12525
diff
changeset
|
548 Three-Dimensional Plots |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
549 |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
550 * Aspect Ratio:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
551 * Three-dimensional Function Plotting:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
552 * Three-dimensional Geometric Shapes:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
553 |
9676 | 554 Graphics Data Structures |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
555 |
9676 | 556 * Introduction to Graphics Structures:: |
557 * Graphics Objects:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
558 * Graphics Object Properties:: |
9676 | 559 * Searching Properties:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
560 * Managing Default Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
561 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
562 Graphics Object Properties |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
563 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
564 * Root Figure Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
565 * Figure Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
566 * Axes Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
567 * Line Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
568 * Text Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
569 * Image Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
570 * Patch Properties:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
571 * Surface Properties:: |
9676 | 572 |
573 Advanced Plotting | |
574 | |
575 * Colors:: | |
576 * Line Styles:: | |
577 * Marker Styles:: | |
578 * Callbacks:: | |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
579 * Application-defined Data:: |
9676 | 580 * Object Groups:: |
11576
8ac9687dbe9f
rename backend to graphics_toolkit
John W. Eaton <jwe@octave.org>
parents:
11538
diff
changeset
|
581 * Graphics Toolkits:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
582 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
583 Object Groups |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
584 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
585 * Data Sources in Object Groups:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
586 * Area Series:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
587 * Bar Series:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
588 * Contour Groups:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
589 * Error Bar Series:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
590 * Line Series:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
591 * Quiver Group:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
592 * Scatter Group:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
593 * Stair Group:: |
9676 | 594 * Stem Series:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
595 * Surface Group:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
596 |
11576
8ac9687dbe9f
rename backend to graphics_toolkit
John W. Eaton <jwe@octave.org>
parents:
11538
diff
changeset
|
597 Graphics Toolkits |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
598 |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
599 * Customizing Toolkit Behavior:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
600 |
3453 | 601 Matrix Manipulation |
602 | |
603 * Finding Elements and Checking Conditions:: | |
604 * Rearranging Matrices:: | |
605 * Special Utility Matrices:: | |
606 * Famous Matrices:: | |
607 | |
608 Arithmetic | |
609 | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9038
diff
changeset
|
610 * Exponents and Logarithms:: |
3453 | 611 * Complex Arithmetic:: |
612 * Trigonometry:: | |
613 * Sums and Products:: | |
9141
c1fff751b5a8
Update section 17.1 (Utility Functions) of arith.txi
Rik <rdrider0-list@yahoo.com>
parents:
9038
diff
changeset
|
614 * Utility Functions:: |
3453 | 615 * Special Functions:: |
12185
862a8e490445
doc fix for rational approximation functions
John W. Eaton <jwe@octave.org>
parents:
11576
diff
changeset
|
616 * Rational Approximations:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
617 * Coordinate Transformations:: |
3453 | 618 * Mathematical Constants:: |
619 | |
620 Linear Algebra | |
621 | |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
622 * Techniques Used for Linear Algebra:: |
3453 | 623 * Basic Matrix Functions:: |
624 * Matrix Factorizations:: | |
625 * Functions of a Matrix:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
626 * Specialized Solvers:: |
3453 | 627 |
14116
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
628 Vectorization and Faster Code Execution |
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
629 |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
630 * Basic Vectorization:: Basic techniques for code optimization |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
631 * Broadcasting:: Broadcasting operations |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
632 * Function Application:: Applying functions to arrays, cells, and structs |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
633 * Accumulation:: Accumulation functions |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
634 * Miscellaneous Techniques:: Other techniques for speeding up code |
14116
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
635 * Examples:: |
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
636 |
12521
02e48856e486
Add fminbnd, fminunc functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12343
diff
changeset
|
637 Nonlinear Equations |
02e48856e486
Add fminbnd, fminunc functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12343
diff
changeset
|
638 |
02e48856e486
Add fminbnd, fminunc functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12343
diff
changeset
|
639 * Solvers:: |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
640 * Minimizers:: |
12521
02e48856e486
Add fminbnd, fminunc functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12343
diff
changeset
|
641 |
8839
fcba62cc4549
add chapter about diagonal and permutation matrices to manual
Jaroslav Hajek <highegg@gmail.com>
parents:
8817
diff
changeset
|
642 Diagonal and Permutation Matrices |
fcba62cc4549
add chapter about diagonal and permutation matrices to manual
Jaroslav Hajek <highegg@gmail.com>
parents:
8817
diff
changeset
|
643 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
644 * Basic Usage:: Creation and Manipulation of Diagonal and Permutation Matrices |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
645 * Matrix Algebra:: Linear Algebra with Diagonal and Permutation Matrices |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
646 * Function Support:: Functions That Are Aware of These Matrices |
14422
428faafdfa54
doc: Fix incorrect sectioning (on "example codes")
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14202
diff
changeset
|
647 * Example Code:: Some Examples of Usage |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
648 * Zeros Treatment:: The Differences in Treatment of Zero Elements |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
649 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
650 Basic Usage |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
651 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
652 * Creating Diagonal Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
653 * Creating Permutation Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
654 * Explicit and Implicit Conversions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
655 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
656 Matrix Algebra |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
657 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
658 * Expressions Involving Diagonal Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
659 * Expressions Involving Permutation Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
660 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
661 Function Support |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
662 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
663 * Diagonal Matrix Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
664 * Permutation Matrix Functions:: |
8839
fcba62cc4549
add chapter about diagonal and permutation matrices to manual
Jaroslav Hajek <highegg@gmail.com>
parents:
8817
diff
changeset
|
665 |
5164 | 666 Sparse Matrices |
667 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
668 * Basics:: Creation and Manipulation of Sparse Matrices |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
669 * Sparse Linear Algebra:: Linear Algebra on Sparse Matrices |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
670 * Iterative Techniques:: Iterative Techniques |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
671 * Real Life Example:: Using Sparse Matrices |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
672 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
673 Basics |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
674 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
675 * Storage of Sparse Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
676 * Creating Sparse Matrices:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
677 * Information:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
678 * Operators and Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
679 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
680 Operators and Functions |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
681 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
682 * Sparse Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
683 * Return Types of Operators and Functions:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
684 * Mathematical Considerations:: |
5164 | 685 |
6741 | 686 Numerical Integration |
3453 | 687 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
688 * Functions of One Variable:: |
12612
16cca721117b
doc: Update all documentation for chapter on Numerical Integration
Rik <octave@nomad.inbox5.com>
parents:
12596
diff
changeset
|
689 * Orthogonal Collocation:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
690 * Functions of Multiple Variables:: |
3453 | 691 |
692 Differential Equations | |
693 | |
694 * Ordinary Differential Equations:: | |
695 * Differential-Algebraic Equations:: | |
696 | |
697 Optimization | |
698 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
699 * Linear Programming:: |
3453 | 700 * Quadratic Programming:: |
701 * Nonlinear Programming:: | |
702 * Linear Least Squares:: | |
703 | |
704 Statistics | |
705 | |
6754 | 706 * Descriptive Statistics:: |
707 * Basic Statistical Functions:: | |
708 * Statistical Plots:: | |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
709 * Correlation and Regression Analysis:: |
6754 | 710 * Distributions:: |
11448
277403af0930
octave.texi: Put statistics detailmenu in correct order
Rik <octave@nomad.inbox5.com>
parents:
11436
diff
changeset
|
711 * Tests:: |
6754 | 712 * Random Number Generation:: |
3453 | 713 |
6741 | 714 Sets |
715 | |
716 * Set Operations:: | |
717 | |
6850 | 718 Polynomial Manipulations |
719 | |
720 * Evaluating Polynomials:: | |
721 * Finding Roots:: | |
722 * Products of Polynomials:: | |
11538
6eded7561d9d
Add undocumented polyaffine function to documentation.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
723 * Derivatives / Integrals / Transforms:: |
6850 | 724 * Polynomial Interpolation:: |
725 * Miscellaneous Functions:: | |
726 | |
6702 | 727 Interpolation |
6823 | 728 |
6702 | 729 * One-dimensional Interpolation:: |
730 * Multi-dimensional Interpolation:: | |
6570 | 731 |
6823 | 732 Geometry |
733 | |
734 * Delaunay Triangulation:: | |
735 * Voronoi Diagrams:: | |
736 * Convex Hull:: | |
737 * Interpolation on Scattered Data:: | |
738 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
739 Delaunay Triangulation |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
740 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
741 * Plotting the Triangulation:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
742 * Identifying Points in Triangulation:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
743 |
6535 | 744 Image Processing |
745 | |
746 * Loading and Saving Images:: | |
747 * Displaying Images:: | |
748 * Representing Images:: | |
749 * Plotting on top of Images:: | |
750 * Color Conversion:: | |
751 | |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
752 Object Oriented Programming |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
753 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
754 * Creating a Class:: |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
755 * Manipulating Classes:: |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
756 * Indexing Objects:: |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
757 * Overloading Objects:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
758 * Inheritance and Aggregation:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
759 |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
760 Indexing Objects |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
761 |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
762 * Defining Indexing And Indexed Assignment:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
763 * Indexed Assignment Optimization:: |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
764 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
765 Overloading Objects |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
766 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
767 * Function Overloading:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
768 * Operator Overloading:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
769 * Precedence of Objects:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
770 |
13943
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
771 GUI Development |
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
772 |
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
773 * I/O Dialogs:: |
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
774 * Progress Bar:: |
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
775 * GUI Utility Functions:: |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
776 * User-Defined Preferences:: |
13943
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
777 |
3453 | 778 System Utilities |
779 | |
780 * Timing Utilities:: | |
781 * Filesystem Utilities:: | |
6549 | 782 * File Archiving Utilities:: |
783 * Networking Utilities:: | |
3453 | 784 * Controlling Subprocesses:: |
785 * Process ID Information:: | |
786 * Environment Variables:: | |
787 * Current Working Directory:: | |
788 * Password Database Functions:: | |
789 * Group Database Functions:: | |
790 * System Information:: | |
6702 | 791 * Hashing Functions:: |
3453 | 792 |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
793 Networking Utilities |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
794 |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
795 * FTP Objects:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
796 * URL Manipulation:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
797 |
6537 | 798 Packages |
799 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
800 * Installing and Removing Packages:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
801 * Using Packages:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
802 * Administrating Packages:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
803 * Creating Packages:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
804 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
805 Creating Packages |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
806 |
6537 | 807 * The DESCRIPTION File:: |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
808 * The INDEX File:: |
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
809 * PKG_ADD and PKG_DEL Directives:: |
6537 | 810 |
6570 | 811 Dynamically Linked Functions |
812 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
813 * Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
814 * Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
815 * Standalone Programs:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
816 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
817 Oct-Files |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
818 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
819 * Getting Started with Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
820 * Matrices and Arrays in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
821 * Character Strings in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
822 * Cell Arrays in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
823 * Structures in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
824 * Sparse Matrices in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
825 * Accessing Global Variables in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
826 * Calling Octave Functions from Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
827 * Calling External Code from Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
828 * Allocating Local Memory in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
829 * Input Parameter Checking in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
830 * Exception and Error Handling in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
831 * Documentation and Test of Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
832 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
833 Sparse Matrices in Oct-Files |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
834 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
835 * Array and Sparse Differences:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
836 * Creating Sparse Matrices in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
837 * Using Sparse Matrices in Oct-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
838 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
839 Mex-Files |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
840 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
841 * Getting Started with Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
842 * Working with Matrices and Arrays in Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
843 * Character Strings in Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
844 * Cell Arrays with Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
845 * Structures with Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
846 * Sparse Matrices with Mex-Files:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
847 * Calling Other Functions in Mex-Files:: |
6570 | 848 |
5582 | 849 Test and Demo Functions |
850 | |
851 * Test Functions:: | |
852 * Demonstration Functions:: | |
853 | |
3453 | 854 Tips and Standards |
855 | |
856 * Style Tips:: Writing clean and robust programs. | |
857 * Comment Tips:: Conventions for writing comments. | |
858 * Function Headers:: Standard headers for functions. | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
859 * Documentation Tips:: Writing readable documentation strings. |
3453 | 860 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
861 Contributing Guidelines |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
862 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
863 * How to Contribute:: |
14150
87f06b9990bb
doc: improve documentation for building Octave
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
864 * Building the Development Sources:: |
87f06b9990bb
doc: improve documentation for building Octave
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
865 * Basics of Generating a Changeset:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
866 * General Guidelines:: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
867 * Octave Sources (m-files):: |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
868 * C++ Sources:: |
10599
d0e0bb2ebebb
Remove tabs in .txi files causing problems with pdf formatting.
Rik <octave@nomad.inbox5.com>
parents:
10452
diff
changeset
|
869 * Other Sources:: |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
870 |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
871 Trouble |
3453 | 872 |
873 * Actual Bugs:: Bugs we will fix later. | |
874 * Reporting Bugs:: | |
875 * Service:: | |
876 | |
877 Reporting Bugs | |
878 | |
879 * Bug Criteria:: | |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
880 * Bug Tracker:: Where to submit your bug report. |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
881 * Bug Reporting:: How to report a bug effectively. |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
882 * Sending Patches:: How to send a patch for Octave. |
3453 | 883 |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
884 Installation |
3453 | 885 |
14150
87f06b9990bb
doc: improve documentation for building Octave
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
886 * Build Dependencies:: |
87f06b9990bb
doc: improve documentation for building Octave
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
887 * Running Configure and Make:: |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
888 * Compiling Octave with 64-bit Indexing:: |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
889 * Installation Problems:: |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
890 |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
891 Build Dependencies |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
892 |
14531
8985cbbd2fe4
doc: Periodic spellcheck of documentation
Rik <octave@nomad.inbox5.com>
parents:
14491
diff
changeset
|
893 * Obtaining the Dependencies Automatically:: |
14202
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
894 * Build Tools:: |
f50e5fa121cf
Update Texinfo detailmenu for main Octave documentation.
Rik <octave@nomad.inbox5.com>
parents:
14150
diff
changeset
|
895 * External Packages:: |
3453 | 896 |
897 Emacs Octave Support | |
898 | |
899 * Installing EOS:: | |
900 * Using Octave Mode:: | |
11255
d682cd6669ac
Update info-based documentation menus to include new nodes.
Rik <octave@nomad.inbox5.com>
parents:
11254
diff
changeset
|
901 * Running Octave from Within Emacs:: |
3453 | 902 * Using the Emacs Info Reader for Octave:: |
12573
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
903 |
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
904 Grammar and Parser |
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
905 |
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
906 * Keywords:: |
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
907 * Parser:: |
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
908 |
3453 | 909 @end detailmenu |
3403 | 910 @end menu |
911 | |
5424 | 912 @c ------------------------------------------------------------------------ |
913 | |
3403 | 914 @include preface.texi |
915 @include intro.texi | |
916 @include basics.texi | |
917 @include data.texi | |
918 @include numbers.texi | |
919 @include strings.texi | |
3439 | 920 @include container.texi |
3403 | 921 @include var.texi |
922 @include expr.texi | |
923 @include eval.texi | |
924 @include stmt.texi | |
925 @include func.texi | |
926 @include errors.texi | |
4167 | 927 @include debug.texi |
3403 | 928 @include io.texi |
929 @include plot.texi | |
930 @include matrix.texi | |
931 @include arith.texi | |
932 @include linalg.texi | |
14116
951eacaf9381
Initial documentation for broadcasting and general vectorization guidelines
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
14033
diff
changeset
|
933 @include vectorize.texi |
3403 | 934 @include nonlin.texi |
8839
fcba62cc4549
add chapter about diagonal and permutation matrices to manual
Jaroslav Hajek <highegg@gmail.com>
parents:
8817
diff
changeset
|
935 @include diagperm.texi |
5164 | 936 @include sparse.texi |
3403 | 937 @include quad.texi |
938 @include diffeq.texi | |
939 @include optim.texi | |
940 @include stats.texi | |
941 @include set.texi | |
942 @include poly.texi | |
6549 | 943 @include interp.texi |
6558 | 944 @include geometry.texi |
3403 | 945 @include signal.texi |
946 @include image.texi | |
947 @include audio.texi | |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8055
diff
changeset
|
948 @include oop.texi |
13943
5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
Rik <octave@nomad.inbox5.com>
parents:
13780
diff
changeset
|
949 @include gui.texi |
3403 | 950 @include system.texi |
6537 | 951 @include package.texi |
3403 | 952 |
953 @c maybe add again later, if anyone every writes any really interesting | |
954 @c fun stuff for Octave. | |
955 @c | |
956 @c @include amuse.texi | |
957 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
958 @c ------------------------------------------------------------------------ |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
959 @c Appendices start here. |
3403 | 960 |
6570 | 961 @include dynamic.texi |
5582 | 962 @include testfun.texi |
3403 | 963 @include tips.texi |
8055
d51c3541be28
contrib.txi: new documentation for contributors
Jaroslav Hajek <highegg@gmail.com>
parents:
7988
diff
changeset
|
964 @include contrib.texi |
10214
57e24c53e063
doc/interpreter/obsolete.texi: new file; list removed functions
John W. Eaton <jwe@octave.org>
parents:
9908
diff
changeset
|
965 @include obsolete.texi |
3403 | 966 @include bugs.texi |
967 @include install.texi | |
968 @include emacs.texi | |
12573
232a90612254
Add new section on parsing to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12560
diff
changeset
|
969 @include grammar.texi |
3403 | 970 @include gpl.texi |
971 | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
972 @c ------------------------------------------------------------------------ |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
973 @c Indices start here. |
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
974 |
3403 | 975 @include cp-idx.texi |
8567 | 976 @c @include vr-idx.texi |
3403 | 977 @include fn-idx.texi |
978 @include op-idx.texi | |
979 | |
980 @bye |