home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / doc / oct-faq (.txt) < prev    next >
GNU Info File  |  2000-01-15  |  29KB  |  601 lines

  1. This is Info file oct-faq, produced by Makeinfo-1.64 from the input
  2. file oct-faq.tex.
  3. File: oct-faq,  Node: Top,  Next: What is Octave?,  Prev: (dir),  Up: (dir)
  4. Preface
  5. *******
  6.    This is a list of frequently asked questions (FAQ) for Octave users.
  7.    Some information in this FAQ was written for earlier versions of
  8. Octave and may now be obsolete.
  9.    I'm looking for new questions (*with* answers), better answers, or
  10. both.  Please send suggestions to bug-octave@bevo.che.wisc.edu.  If you
  11. have general questions about Octave, or need help for something that is
  12. not covered by the Octave manual or the FAQ, please use the
  13. help-octave@bevo.che.wisc.edu mailing list.
  14.    This FAQ is intended to supplement, not replace, the Octave manual.
  15. Before posting a question to the help-octave mailing list, you should
  16. first check to see if the topic is covered in the manual.
  17. * Menu:
  18. * What is Octave?::
  19. * Version 2.0::
  20. * Octave Features::
  21. * Documentation::
  22. * Getting Octave::
  23. * Installation::
  24. * Common problems::
  25. * Getting additional help::
  26. * Bug reports::
  27. * MATLAB compatibility::
  28. * Index::
  29. File: oct-faq,  Node: What is Octave?,  Next: Version 2.0,  Prev: Top,  Up: Top
  30. What is Octave?
  31. ***************
  32.    Octave is a high-level interactive language, primarily intended for
  33. numerical computations that is mostly compatible with MATLAB.(1)
  34.    Octave can do arithmetic for real and complex scalars and matrices,
  35. solve sets of nonlinear algebraic equations, integrate functions over
  36. finite and infinite intervals, and integrate systems of ordinary
  37. differential and differential-algebraic equations.
  38.    Octave uses the GNU readline library to handle reading and editing
  39. input.  By default, the line editing commands are similar to the cursor
  40. movement commands used by GNU Emacs, and a vi-style line editing
  41. interface is also available.  At the end of each session, the command
  42. history is saved, so that commands entered during previous sessions are
  43. not lost.
  44.    The Octave distribution includes a 200+ page Texinfo manual.  Access
  45. to the complete text of the manual is available via the help command at
  46. the Octave prompt.
  47.    Two and three dimensional plotting is fully supported using gnuplot.
  48.    The underlying numerical solvers are currently standard Fortran ones
  49. like Lapack, Linpack, Odepack, the Blas, etc., packaged in a library of
  50. C++ classes.  If possible, the Fortran subroutines are compiled with
  51. the system's Fortran compiler, and called directly from the C++
  52. functions.  If that's not possible, you can still compile Octave if you
  53. have the free Fortran to C translator f2c.
  54.    Octave is also free software; you can redistribute it and/or modify
  55. it under the terms of the GNU General Public License as published by the
  56. Free Software Foundation.
  57.    ---------- Footnotes ----------
  58.    (1)  MATLAB is a registered trademark of The MathWorks, Inc.
  59. File: oct-faq,  Node: Version 2.0,  Next: Octave Features,  Prev: What is Octave?,  Up: Top
  60. What's new in version 2.0 of Octave
  61. ***********************************
  62.    Version 2.0.10 of Octave was released February 6, 1998.  Most bugs
  63. reported since version 2.0 was release have been fixed, and a number of
  64. new features have been added.  Octave is now much more compatible with
  65. MATLAB.
  66.    A list of user-visible changes in recent versions of Octave may be
  67. found in the file NEWS, distributed in both source and binary releases
  68. of Octave.
  69. File: oct-faq,  Node: Octave Features,  Next: Documentation,  Prev: Version 2.0,  Up: Top
  70. What features are unique to Octave?
  71. ***********************************
  72. * Menu:
  73. * Command and variable name completion::
  74. * Command history::
  75. * Data structures::
  76. * Short-circuit boolean operators::
  77. * Increment and decrement operators::
  78. * Unwind-protect::
  79. * Variable-length argument lists::
  80. * Variable-length return lists::
  81. * Built-in ODE and DAE solvers::
  82. File: oct-faq,  Node: Command and variable name completion,  Next: Command history,  Prev: Octave Features,  Up: Octave Features
  83. Command and variable name completion
  84. ====================================
  85.    Typing a TAB character (ASCII code 9) on the command line causes
  86. Octave to attempt to complete variable, function, and file names.
  87. Octave uses the text before the cursor as the initial portion of the
  88. name to complete.
  89.    For example, if you type `fu' followed by TAB at the Octave prompt,
  90. Octave will complete the rest of the name `function' on the command
  91. line (unless you have other variables or functions defined that begin
  92. with the characters `fu').  If there is more than one possible
  93. completion, Octave will ring the terminal bell to let you know that your
  94. initial sequence of characters is not enough to specify a unique name.
  95. To complete the name, you may either edit the initial character sequence
  96. (usually adding more characters until completion is possible) or type
  97. another TAB to cause Octave to display the list of possible completions.
  98. File: oct-faq,  Node: Command history,  Next: Data structures,  Prev: Command and variable name completion,  Up: Octave Features
  99. Command history
  100. ===============
  101.    When running interactively, Octave saves the commands you type in an
  102. internal buffer so that you can recall and edit them.  Emacs and vi
  103. editing modes are available with Emacs keybindings enabled by default.
  104.    When Octave exits, the current command history is saved to the file
  105. `~/.octave_hist', and each time Octave starts, it inserts the contents
  106. of the `~/.octave_hist' file in the history list so that it is easy to
  107. begin working where you left off.
  108. File: oct-faq,  Node: Data structures,  Next: Short-circuit boolean operators,  Prev: Command history,  Up: Octave Features
  109. Data structures
  110. ===============
  111.    Octave includes a limited amount of support for organizing data in
  112. structures.  The current implementation uses an associative array with
  113. indices limited to strings, but the syntax is more like C-style
  114. structures.  Here are some examples of using data structures in Octave.
  115.    * Elements of structures can be of any value type.
  116.           octave:1> x.a = 1; x.b = [1, 2; 3, 4]; x.c = "string";
  117.           octave:2> x.a
  118.           x.a = 1
  119.           octave:3> x.b
  120.           x.b =
  121.           
  122.             1  2
  123.             3  4
  124.           
  125.           octave:4> x.c
  126.           x.c = string
  127.    * Structures may be copied.
  128.           octave:1> y = x
  129.           y =
  130.           {
  131.             a = 1
  132.             b =
  133.           
  134.               1  2
  135.               3  4
  136.           
  137.             c = string
  138.             s =
  139.           
  140.               0.00000  0.00000  0.00000
  141.               0.00000  5.46499  0.00000
  142.               0.00000  0.00000  0.36597
  143.           
  144.             u =
  145.           
  146.               -0.40455  -0.91451
  147.               -0.91451   0.40455
  148.           
  149.             v =
  150.           
  151.               -0.57605   0.81742
  152.               -0.81742  -0.57605
  153.           }
  154.    * Structure elements may reference other structures.
  155.           octave:1> x.b.d = 3
  156.           x.b.d = 3
  157.           octave:2> x.b
  158.           ans =
  159.           {
  160.             d = 3
  161.           }
  162.           octave:3> x.b.d
  163.           ans = 3
  164.    * Functions can return structures.
  165.           octave:1> function y = f (x)
  166.           > y.re = real (x);
  167.           > y.im = imag (x);
  168.           > endfunction
  169.           
  170.           octave:2> f (rand + rand*I);
  171.           ans =
  172.           {
  173.             im = 0.18033
  174.             re = 0.19069
  175.           }
  176.    * Function return lists can include structure elements, and they may
  177.      be indexed like any other variable.
  178.           octave:1> [x.u, x.s(2:3,2:3), x.v] = svd ([1, 2; 3, 4]);
  179.           octave:2> x
  180.           x =
  181.           {
  182.             s =
  183.           
  184.               0.00000  0.00000  0.00000
  185.               0.00000  5.46499  0.00000
  186.               0.00000  0.00000  0.36597
  187.           
  188.             u =
  189.           
  190.               -0.40455  -0.91451
  191.               -0.91451   0.40455
  192.           
  193.             v =
  194.           
  195.               -0.57605   0.81742
  196.               -0.81742  -0.57605
  197.           }
  198.    * You can also use the function `is_struct' to determine whether a
  199.      given value is a data structure.  For example
  200.           is_struct (x)
  201.      returns 1 if the value of the variable X is a data structure.
  202.    This feature should be considered experimental, but you should
  203. expect it to work.  Suggestions for ways to improve it are welcome.
  204. File: oct-faq,  Node: Short-circuit boolean operators,  Next: Increment and decrement operators,  Prev: Data structures,  Up: Octave Features
  205. Short-circuit boolean operators
  206. ===============================
  207.    Octave's `&&' and `||' logical operators are evaluated in a
  208. short-circuit fashion (like the corresponding operators in the C
  209. language) and work differently than the element by element operators
  210. `&' and `|'.
  211. File: oct-faq,  Node: Increment and decrement operators,  Next: Unwind-protect,  Prev: Short-circuit boolean operators,  Up: Octave Features
  212. Increment and decrement operators
  213. =================================
  214.    Octave includes the C-like increment and decrement operators `++'
  215. and `--' in both their prefix and postfix forms.
  216.    For example, to pre-increment the variable X, you would write `++X'.
  217. This would add one to X and then return the new value of X as the
  218. result of the expression.  It is exactly the same as the expression `X
  219. = X + 1'.
  220.    To post-increment a variable X, you would write `X++'.  This adds
  221. one to the variable X, but returns the value that X had prior to
  222. incrementing it.  For example, if X is equal to 2, the result of the
  223. expression `X++' is 2, and the new value of X is 3.
  224.    For matrix and vector arguments, the increment and decrement
  225. operators work on each element of the operand.
  226.    It is not currently possible to increment index expressions.  For
  227. example, you might expect that the expression `V(4)++' would increment
  228. the fourth element of the vector V, but instead it results in a parse
  229. error.  This problem may be fixed in a future release of Octave.
  230. File: oct-faq,  Node: Unwind-protect,  Next: Variable-length argument lists,  Prev: Increment and decrement operators,  Up: Octave Features
  231. Unwind-protect
  232. ==============
  233.    Octave supports a limited form of exception handling modelled after
  234. the unwind-protect form of Lisp.  The general form of an
  235. `unwind_protect' block looks like this:
  236.      unwind_protect
  237.        BODY
  238.      unwind_protect_cleanup
  239.        CLEANUP
  240.      end_unwind_protect
  241. Where BODY and CLEANUP are both optional and may contain any Octave
  242. expressions or commands.  The statements in CLEANUP are guaranteed to
  243. be executed regardless of how control exits BODY.
  244.    The `unwind_protect' statement is often used to reliably restore the
  245. values of global variables that need to be temporarily changed.
  246. File: oct-faq,  Node: Variable-length argument lists,  Next: Variable-length return lists,  Prev: Unwind-protect,  Up: Octave Features
  247. Variable-length argument lists
  248. ==============================
  249.    Octave has a real mechanism for handling functions that take an
  250. unspecified number of arguments, so it is no longer necessary to place
  251. an upper bound on the number of optional arguments that a function can
  252. accept.
  253.    Here is an example of a function that uses the new syntax to print a
  254. header followed by an unspecified number of values:
  255.      function foo (heading, ...)
  256.        disp (heading);
  257.        va_start ();
  258.        while (--nargin)
  259.          disp (va_arg ());
  260.        endwhile
  261.      endfunction
  262.    Calling `va_start()' positions an internal pointer to the first
  263. unnamed argument and allows you to cycle through the arguments more than
  264. once.  It is not necessary to call `va_start()' if you do not plan to
  265. cycle through the arguments more than once.
  266.    The function `va_arg()' returns the value of the next available
  267. argument and moves the internal pointer to the next argument.  It is an
  268. error to call `va_arg()' when there are no more arguments available.
  269.    It is also possible to use the keyword ALL_VA_ARGS to pass all
  270. unnamed arguments to another function.
  271. File: oct-faq,  Node: Variable-length return lists,  Next: Built-in ODE and DAE solvers,  Prev: Variable-length argument lists,  Up: Octave Features
  272. Variable-length return lists
  273. ============================
  274.    Octave also has a real mechanism for handling functions that return
  275. an unspecified number of values, so it is no longer necessary to place
  276. an upper bound on the number of outputs that a function can produce.
  277.    Here is an example of a function that uses the new syntax to produce
  278. `N' values:
  279.      function [...] = foo (n)
  280.        for i = 1:n
  281.          vr_val (i);
  282.        endfor
  283.      endfunction
  284. File: oct-faq,  Node: Built-in ODE and DAE solvers,  Prev: Variable-length return lists,  Up: Octave Features
  285. Built-in ODE and DAE solvers
  286. ============================
  287.    Octave includes LSODE and DASSL for solving systems of stiff ordinary
  288. differential and differential-algebraic equations.  These functions are
  289. built in to the interpreter.
  290. File: oct-faq,  Node: Documentation,  Next: Getting Octave,  Prev: Octave Features,  Up: Top
  291. What documentation exists for Octave?
  292. *************************************
  293.    The Octave distribution includes a 220+ page manual that is also
  294. distributed under the terms of the GNU GPL.
  295.    The Octave manual is intended to be a complete reference for Octave,
  296. but it is not a finished document.  If you have problems using it, or
  297. find that some topic is not adequately explained, indexed, or
  298. cross-referenced, please send a bug report to
  299. bug-octave@bevo.che.wisc.edu.
  300.    Because the Octave manual is written using Texinfo, the complete
  301. text of the Octave manual is also available on line using the GNU Info
  302. system via the GNU Emacs, info, or xinfo programs, or by using the
  303. `help -i' command to start the GNU info browser directly from the
  304. Octave prompt.
  305.    It is also possible to use your favorite WWW browser to read the
  306. Octave manual by converting the Texinfo source to HTML using the
  307. `texi2html' program.
  308. File: oct-faq,  Node: Getting Octave,  Next: Installation,  Prev: Documentation,  Up: Top
  309. Obtaining Source Code
  310. *********************
  311. * Menu:
  312. * Octave for Unix::
  313. * Octave for other platforms::
  314. * latest versions::
  315. File: oct-faq,  Node: Octave for Unix,  Next: Octave for other platforms,  Prev: Getting Octave,  Up: Getting Octave
  316. How do I get a copy of Octave for Unix?
  317. =======================================
  318.    You can get Octave from a friend who has a copy, by anonymous FTP,
  319. or by ordering a tape or CD-ROM from the Free Software Foundation (FSF).
  320.    Octave was not developed by the FSF, but the FSF does distribute
  321. Octave, and the developers of Octave support the efforts of the FSF by
  322. encouraging users of Octave to order Octave on CD-ROM directly from the
  323.    The FSF is a nonprofit organization that distributes software and
  324. manuals to raise funds for more GNU development.  Buying a CD-ROM from
  325. the FSF contributes directly to paying staff to develop GNU software.
  326. CD-ROMs cost $240 if an organization is buying, or $60 if an individual
  327. is buying.
  328.    For more information about ordering from the FSF, contact
  329. gnu@gnu.org, phone (617) 542-5942 or anonymous ftp the file
  330. `/pub/gnu/GNUinfo/ORDERS' from ftp.gnu.org.
  331.    If you are on the Internet, you can copy the latest distribution
  332. version of Octave from the file `/pub/octave/octave-M.N.tar.gz', on the
  333. host `ftp.che.wisc.edu'.  This tar file has been compressed with GNU
  334. gzip, so be sure to use binary mode for the transfer.  `M' and `N'
  335. stand for version numbers; look at a listing of the directory through
  336. ftp to see what version is available.  After you unpack the
  337. distribution, be sure to look at the files `README' and `INSTALL'.
  338.    Binaries for several popular systems are also available.  If you
  339. would like help out by making binaries available for other systems,
  340. please contact bug-octave@bevo.che.wisc.edu.
  341.    A list of user-visible changes since the last release is available in
  342. the file `NEWS'.  The file `ChangeLog' in the source distribution
  343. contains a more detailed record of changes made since the last release.
  344. File: oct-faq,  Node: Octave for other platforms,  Next: latest versions,  Prev: Octave for Unix,  Up: Getting Octave
  345. How do I get a copy of Octave for (some other platform)?
  346. ========================================================
  347.    Octave currently runs on Unix-like systems, OS/2, and Windows NT/95
  348. (using the gnu-win32 tools from Cygnus Support).  It should be possible
  349. to make Octave work on other systems as well.  If you are interested in
  350. porting Octave to other systems, please contact
  351. bug-octave@bevo.che.wisc.edu.
  352. File: oct-faq,  Node: latest versions,  Prev: Octave for other platforms,  Up: Getting Octave
  353. What is the latest version of Octave
  354. ====================================
  355.    The latest version of Octave is 2.0.10, released February 6, 1998.
  356. File: oct-faq,  Node: Installation,  Next: Common problems,  Prev: Getting Octave,  Up: Top
  357. Installation Issues and Problems
  358. ********************************
  359.    Octave requires approximately 125MB of disk storage to unpack and
  360. compile from source (significantly less if you don't compile with
  361. debugging symbols or create shared libraries).  Once installed, Octave
  362. requires approximately 65MB of disk space (again, considerably less if
  363. you don't build shared libraries or the binaries and libraries do not
  364. include debugging symbols).
  365. * Menu:
  366. * What else do I need?::
  367. * Other C++ compilers?::
  368. File: oct-faq,  Node: What else do I need?,  Next: Other C++ compilers?,  Prev: Installation,  Up: Installation
  369. What else do I need?
  370. ====================
  371.    To compile Octave, you will need a recent version of GNU Make.  You
  372. will also need g++ 2.7.2 or later.  Version 2.8.0 or egcs 1.0.x should
  373. work.  Later versions may work, but C++ is still evolving, so don't be
  374. too surprised if you run into some trouble.
  375.    It is no longer necessary to have libg++, but you do need to have the
  376. GNU implementation of libstdc++.  If you are using g++ 2.7.2, libstdc++
  377. is distributed along with libg++, but for later versions, libstdc++ is
  378. distributed separately.  For egcs, libstdc++ is included with the
  379. compiler distribution.
  380.    <em>You must have gnu make to compile octave</em>.  Octave's
  381. Makefiles use features of GNU Make that are not present in other
  382. versions of make.  GNU Make is very portable and easy to install.
  383. File: oct-faq,  Node: Other C++ compilers?,  Prev: What else do I need?,  Up: Installation
  384. Can I compile Octave with another C++ compiler?
  385. ===============================================
  386.    Currently, Octave can only be compiled with the GNU C++ compiler.  It
  387. would be nice to make it possible to compile Octave with other C++
  388. compilers, but the maintainers do not have sufficient time to devote to
  389. this.  If you are interested in working to make Octave portable to other
  390. compilers, please contact bug-octave@bevo.che.wisc.edu.
  391. File: oct-faq,  Node: Common problems,  Next: Getting additional help,  Prev: Installation,  Up: Top
  392. Common problems
  393. ***************
  394.    This list is probably far too short.  Feel free to suggest additional
  395. questions (preferably with answers!)
  396.    * Octave takes a long time to find symbols.
  397.      Octave is probably spending this time recursively searching
  398.      directories for function files.  Check the value of your LOADPATH.
  399.      For those elements that end in `//', do any name a very large
  400.      directory tree?  Does it contain directories that have a mixture
  401.      of files and directories?  In order for the recursive directory
  402.      searching code to work efficiently, directories that are to be
  403.      searched recursively should have either function files only, or
  404.      subdirectories only, but not a mixture of both.  Check to make
  405.      sure that Octave's standard set of function files is installed
  406.      this way.
  407. File: oct-faq,  Node: Getting additional help,  Next: Bug reports,  Prev: Common problems,  Up: Top
  408. Getting additional help
  409. ***********************
  410.    The mailing list
  411.      help-octave@bevo.che.wisc.edu
  412. is available for questions related to using, installing, and porting
  413. Octave that are not adequately answered by the Octave manual or by this
  414. document.
  415.    If you would like to join the discussion and receive all messages
  416. sent to the list, please send a short note to
  417.      help-octave-request@bevo.che.wisc.edu
  418.                  ^^^^^^^
  419.    *Please do not* send requests to be added or removed from the the
  420. mailing list, or other administrative trivia to the list itself.
  421.    An archive of old postings to the help-octave mailing list is
  422. maintained on ftp.che.wisc.edu in the directory
  423. `/pub/octave/MAILING-LISTS'.
  424. File: oct-faq,  Node: Bug reports,  Next: MATLAB compatibility,  Prev: Getting additional help,  Up: Top
  425. I think I have found a bug in Octave.
  426. *************************************
  427.    "I think I have found a bug in Octave, but I'm not sure.  How do I
  428. know, and who should I tell?"
  429.    First, see the section on bugs and bug reports in the Octave manual.
  430. The Octave manual is included in the Octave distribution.
  431.    When you report a bug, make sure to describe the type of computer you
  432. are using, the version of the operating system it is running, and the
  433. version of Octave that you are using.  Also provide enough code so that
  434. the Octave maintainers can duplicate your bug.
  435.    If you have Octave working at all, the easiest way to do this is to
  436. use the Octave function `bug_report'.  When you execute this function,
  437. Octave will prompt you for a subject and then invoke the editor on a
  438. file that already contains all the configuration information.  When you
  439. exit the editor, Octave will mail the bug report for you.
  440.    If for some reason you cannot use Octave's `bug_report' function,
  441. mail your bug report to "bug-octave@bevo.che.wisc.edu".  Your message
  442. needs to include enough information to allow the maintainers of Octave
  443. to fix the bug.  Please read the section on bugs and bug reports in the
  444. Octave manual for a list of things that should be included in every bug
  445. report.
  446. File: oct-faq,  Node: MATLAB compatibility,  Next: Index,  Prev: Bug reports,  Up: Top
  447. Porting programs from MATLAB to Octave
  448. **************************************
  449.    "I wrote some code for MATLAB, and I want to get it running under
  450. Octave.  Is there anything I should watch out for?"
  451.    The differences between Octave and MATLAB typically fall into one of
  452. three categories:
  453.   1. Irrelevant.
  454.   2. Known differences, perhaps configurable with a user preference
  455.      variable.
  456.   3. Unknown differences.
  457.    The first category, irrelevant differences, do not affect
  458. computations and most likely do not affect the execution of function
  459. files.
  460.    The differences of the second category are usually because the
  461. authors of Octave decided on a better (subjective) implementation that
  462. the way MATLAB does it, and so introduced "user preference variables"
  463. so that you can customize Octave's behavior to be either
  464. MATLAB-compatible or to use Octave's new features.  To make Octave more
  465. MATLAB-compatible, put the following statements in your `~/.octaverc'
  466. file, or use the command line option `--traditional', which implies all
  467. of these settings.  Note that this list may not be complete, because
  468. some new variables may have been introduced since this document was
  469. last updated.
  470.        PS1 = ">> "
  471.        PS2 = ""
  472.        beep_on_error = 1.0
  473.        default_eval_print_flag = 0.0
  474.        default_save_format = "mat-binary"
  475.        define_all_return_values = 1.0
  476.        do_fortran_indexing = 1.0
  477.        empty_list_elements_ok = 1.0
  478.        fixed_point_format = 1.0
  479.        implicit_num_to_str_ok = 1.0
  480.        implicit_str_to_num_ok = 1.0
  481.        ok_to_lose_imaginary_part = 1.0
  482.        page_screen_output = 0.0
  483.        prefer_column_vectors = 0.0
  484.        prefer_zero_one_indexing = 1.0
  485.        print_empty_dimensions = 0.0
  486.        treat_neg_dim_as_zero = 1.0
  487.        warn_function_name_clash = 0.0
  488.        whitespace_in_literal_matrix = "traditional"
  489.    Some other known differences are:
  490.    * The Octave plotting functions are mostly compatible with the ones
  491.      from MATLAB 3.x, but not from MATLAB 4.x.
  492.    The third category of differences is (hopefully) shrinking.  If you
  493. find a difference between Octave behavior and MATLAB, then you should
  494. send a description of this difference (with code illustrating the
  495. difference, if possible) to bug-octave@bevo.che.wisc.edu.
  496.    An archive of old postings to the Octave mailing lists is maintained
  497. on ftp.che.wisc.edu in the directory `/pub/octave/MAILING-LISTS'.
  498. File: oct-faq,  Node: Index,  Prev: MATLAB compatibility,  Up: Top
  499. Concept Index
  500. *************
  501. * Menu:
  502. * MATLAB compatibility:                 MATLAB compatibility.
  503. * Additional help:                      Getting additional help.
  504. * Argument lists, variable-length:      Variable-length argument lists.
  505. * Boolean operators, short-circuit:     Short-circuit boolean operators.
  506. * Bug in Octave, newly found:           Bug reports.
  507. * Command completion:                   Command and variable name completion.
  508. * Command history:                      Command history.
  509. * Compatibility with MATLAB:            MATLAB compatibility.
  510. * DASSL:                                Built-in ODE and DAE solvers.
  511. * Data structures:                      Data structures.
  512. * Decrement operators:                  Increment and decrement operators.
  513. * DJGPP:                                Octave for other platforms.
  514. * EMX:                                  Octave for other platforms.
  515. * FAQ for Octave, latest version:       Top.
  516. * Flex:                                 What else do I need?.
  517. * FSF [Free Software Foundation]:       Octave for Unix.
  518. * FSF, contact <gnu@gnu.org>:           Octave for Unix.
  519. * Function name completion:             Command and variable name completion.
  520. * GNU Bison:                            What else do I need?.
  521. * GNU g++:                              What else do I need?.
  522. * GNU gcc:                              What else do I need?.
  523. * GNU Make:                             What else do I need?.
  524. * GNU [GNU's not unix]:                 Octave for Unix.
  525. * GNUware, anonymous FTP sites:         Octave for Unix.
  526. * History:                              Command history.
  527. * Increment operators:                  Increment and decrement operators.
  528. * libg++:                               What else do I need?.
  529. * Logical operators, short-circuit:     Short-circuit boolean operators.
  530. * LSODE:                                Built-in ODE and DAE solvers.
  531. * Mailing lists, bug-octave:            Bug reports.
  532. * Mailing lists, help-octave:           Getting additional help.
  533. * Manual, for Octave:                   Bug reports.
  534. * MS-DOS support:                       Octave for other platforms.
  535. * Name completion:                      Command and variable name completion.
  536. * Octave bug report:                    Bug reports.
  537. * Octave, building:                     Installation.
  538. * Octave, documentation:                Documentation.
  539. * Octave, getting a copy:               Octave for Unix.
  540. * Octave, ordering:                     Octave for Unix.
  541. * Octave, version date:                 latest versions.
  542. * Operators, boolean:                   Short-circuit boolean operators.
  543. * Operators, decrement:                 Increment and decrement operators.
  544. * Operators, increment:                 Increment and decrement operators.
  545. * OS/2 support:                         Octave for other platforms.
  546. * Return lists, variable-length:        Variable-length return lists.
  547. * Short-circuit boolean operators:      Short-circuit boolean operators.
  548. * Source code:                          Getting Octave.
  549. * Structures:                           Data structures.
  550. * Unwind-protect:                       Unwind-protect.
  551. * Variable name completion:             Command and variable name completion.
  552. * Variable-length argument lists:       Variable-length argument lists.
  553. * Variable-length return lists:         Variable-length return lists.
  554. * VAX:                                  Octave for other platforms.
  555. * VMS support:                          Octave for other platforms.
  556. * Windows support:                      Octave for other platforms.
  557. Tag Table:
  558. Node: Top
  559. Node: What is Octave?
  560. Node: Version 2.0
  561. Node: Octave Features
  562. Node: Command and variable name completion
  563. Node: Command history
  564. Node: Data structures
  565. Node: Short-circuit boolean operators
  566. Node: Increment and decrement operators
  567. Node: Unwind-protect
  568. Node: Variable-length argument lists
  569. 10732
  570. Node: Variable-length return lists
  571. 12007
  572. Node: Built-in ODE and DAE solvers
  573. 12617
  574. Node: Documentation
  575. 12964
  576. Node: Getting Octave
  577. 13974
  578. Node: Octave for Unix
  579. 14193
  580. Node: Octave for other platforms
  581. 16083
  582. Node: latest versions
  583. 16613
  584. Node: Installation
  585. 16856
  586. Node: What else do I need?
  587. 17454
  588. Node: Other C++ compilers?
  589. 18372
  590. Node: Common problems
  591. 18905
  592. Node: Getting additional help
  593. 19833
  594. Node: Bug reports
  595. 20657
  596. Node: MATLAB compatibility
  597. 22042
  598. Node: Index
  599. 24541
  600. End Tag Table
  601.