Mercurial > hg > octave-nkf
view WWW/NEWS-2.html @ 8924:3c3cbe8f18e0 ss-3-1-54
bump version info for snapshot
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 07 Mar 2009 13:28:03 -0500 |
parents | 673686daec87 |
children |
line wrap: on
line source
<!doctype html public "-//IETF//DTD HTML Strict//EN"> <html> <head> <title> Changes in Octave version 2 </title> </head> <body> <h1> News for Octave Version 2 </h1> <hr> <h2>Summary of changes for version 2.0.10</h2> <ul> <li>The built-in variable `PWD' has been removed. If you need to get the value of the current working directory, use the pwd() function instead. </li> <p> <li>For compatibility with Matlab, Octave's lyap function now solves <pre> A*X + X*A' + C = 0 </pre> instead of <pre> A'*X + X*A + C = 0 </pre> To try to avoid confusion for people who are used to the way Octave behaved in previous versions, a warning is printed the first time lyap is called in a given session. To completely disable the warning, simply add <pre> global __disable_lyap_interface_change_warning__; </pre> to your ~/.octaverc file. The warning will eventually disappear for good in some future version of Octave. </li> <p> <li>New built-in functions for computing Bessel functions: besseli, besselj, besselk, and bessely. </li> <p> <li>The gammai and betai functions are now implemented as built-in functions rather than function files. </li> <p> <li>The new built-in variable `implicit_num_to_str_ok' controls whether Octave converts expressions like `[97, 98, 99, "123"]' to strings. The default value is 0 unless you use --traditional. </li> <p> <li>The new built-in variable `fixed_point_format' controls whether Octave uses a scaled fixed-point format for displaying matrices. The default value is 0 unless you use --traditional. </li> <p> <li>The function sumsq now computes sum (x .* conj (x)) for complex values. </li> <p> <li>Dynamically linked functions can be cleared. </li> <p> <li>If a .oct file has a time stamp more recent than the time that it was loaded, it is automatically reloaded. Reloading a .oct file may cause several functions to be cleared automatically. By default, a warning is printed that lists the names of the functions that will be cleared. You can suppress the message by setting the new built-in variable `warn_reload_forces_clear' to 0. </li> <p> <li>Global variables are now initialized to the empty matrix, for compatibility with Matlab. </li> <p> <li>Explicit initialization of global variables only happens once. For example, after the following statements are evaluated, g still has the value 1. <pre> global g = 1 global g = 2 </pre> This is useful for initializing global variables that are used to maintain state information that is shared among several functions. </li> <p> <li>The new built-in variable max_recursion_depth allows you to prevent Octave from attempting infinite recursion. The default value is 256. </li> <p> <li>Octave now uses readline version 2.1 and kpathsea 3.0. </li> <p> <li>The libreadline and libkpathsea libraries are no longer installed. </li> <p> <li>The libcruft, liboctave, and liboctinterp libraries are now installed in $libdir/octave instead of just $libdir. </li> <p> <li>It's no longer necessary to have libg++, but you do need to have the GNU implementation of libstdc++. If you are using gcc 2.7.2, libstdc++ is distributed as part of libg++ 2.7.2. For later versions, libstdc++ is distributed separately. For egcs, libstdc++ is included with the compiler distribution. </li> </ul> <h2>Summary of changes for version 2.0.9</h2> This is a bug-fixing release, but there is one new user-visible feature: <ul> <li>It is now possible to specify a label for lines in the plot key when using the plot function. For example, <pre> plot (x, y, "-*;sin(x);") </pre> plots y vs. x using the linespoints style and sets the title of the line in the key to be `sin(x)' </li> </ul> <h2>Summary of changes for version 2.0.8</h2> This is a bug-fixing release. There are only a few new user-visible features. <ul> <li>If the argument to eig() is symmetric, Octave uses the specialized Lapack subroutine for symmetric matrices for a significant increase in performance. </li> <p> <li>It is now possible to use the mkoctfile script to create .oct files from multiple source and object files. </li> </ul> <h2>Summary of changes for version 2.0.7</h2> This is a bug-fixing release. There are no new user-visible features. <h2>Summary of changes for version 2.0.6</h2> This is primarily a bug-fixing release. There are only a few new user-visilbe features. <ul> <li>The new built-in variable default_eval_print_flag controls whether Octave prints the results of commands executed by eval() that do not end with semicolons. The default is 1. </li> <p> <li>The new built-in constant OCTAVE_HOME specifies the top-level directory where Octave is installed. </li> <p> <li>Octave no longer includes functions to work with NPSOL or QPSOL, because they are not free software. </li> </ul> <h2>Summary of changes for version 2.0.5</h2> <ul> <li>A `switch' statement is now available. See the Statements chapter in the manual for details. </li> <p> <li>Commands like ls, save, and cd may now also be used as formal parameters for functions. </li> <p> <li>More tests. </li> </ul> <h2>Summary of changes for version 2.0.4</h2> <ul> <li>It is now possible to use commands like ls, save, and cd as simple variable names. They still cannot be used as formal parameters for functions, or as the names of structure variables. Failed assignments leave them undefined (you can recover the orginal function definition using clear). </li> <p> <li>Is is now possible to invoke commands like ls, save, and cd as normal functions (for example, load ("foo", "x", "y", "z")). </li> </ul> <h2>Summary of changes for version 2.0.3</h2> <ul> <li>The manual has been completely revised and now corresponds much more closely to the features of the current version. </li> <p> <li>The return value for assignment expressions is now the RHS since that is more consistent with the way other programming languages work. However, Octave still prints the entire LHS value so that <pre> x = zeros (1, 2); x(2) = 1 </pre> still prints <pre> x = 0 1 </pre> but an assignment like <pre> z = x(2) = 1 </pre> sets z to 1 (not [ 0, 1 ] as in previous versions of Octave). </li> <p> <li>It is now much easier to make binary distributions. See the Binary Distributions section of the manual for more details. </li> </ul> <h2>Summary of changes for version 2.0.2</h2> <ul> </li> <li>Octave now stops executing commands from a script file if an error is encountered. </li> <p> <li>The return, and break commands now cause Octave to quit executing commands from script files. When used in invalid contexts, the break, continue, and return commands are now simply ignored instead of producing parse errors. </li> <p> <li>size ("") is now [0, 0]. </li> <p> <li>New functions: <dl> <dt><b>sleep</b></dt> <dd>pause execution for a specified number of seconds</dd> <dt><b>usleep</b></dt> <dd>pause execution for a specified number of microseconds</dd> </dl> </li> </ul> </pre> <h2>Summary of changes for version 2.0.1</h2> <p> Other than bug fixes, there were no user-visible changes in version 2.0.1. <h2>Summary of changes for version 2.0</h2> <p> <ul> <li>The set and show commands for setting and displaying gnuplot parameters have been replaced by gset and gshow. This change will probably break lots of things, but it is necessary to allow for compatibility with the Matlab graphics and GUI commands in a future version of Octave. (For now, the old set and show commands do work, but they print an annoying warning message to try to get people to switch to using gset.) </li> <p> <li>Octave has been mostly ported to Windows NT and Windows 95 using the beta 17 release of the Cygnus GNU-WIN32 tools. Not everything works, but it is usable. See the file README.WINDOWS for more information. </li> <p> <li>Dynamic linking works on more systems using dlopen() and friends (most modern Unix systems) or shl_load() and friends (HP/UX systems). A simple example is provided in examples/hello.cc. For this feature to work, you must configure Octave with --enable-shared. You may also need to have a shared-library version of libg++ and libstdc++. </li> <p> <li>New data types can be added to Octave by writing a C++ class. On systems that support dynamic linking, new data types can be added to an already running Octave binary. A simple example appears in the file examples/make_int.cc. Other examples are the standard Octave data types defined in the files src/ov*.{h,cc} and src/op-*.cc. </li> <p> <li>The configure option --enable-bounds-check turns on bounds checking on element references for Octave's internal array and matrix classes. It's enabled by default. To disable this feature, configure Octave with --disable-bounds-check. </li> <p> <li>The C-style I/O functions (fopen, fprintf, etc.) have been rewritten to be more compatible with Matlab. The fputs function has also been added. Usage of the *printf functions that was allowed in previous versions of Octave should still work. However, there is no way to make the new versions of the *scanf functions compatible with Matlab *and* previous versions of Octave. An optional argument to the *scanf functions is now available to make them behave in a way that is compatible with previous versions of Octave. </li> <p> <li>Octave can now read files that contain columns of numbers only, with no header information. The name of the loaded variable is constructed from the file name. Each line in the file must have the same number of elements. </li> <p> <li>The interface to the pager has changed. The new built-in variable `page_output_immediately' controls when Octave sends output to the pager. If it is nonzero, Octave sends output to the pager as soon as it is available. Otherwise, Octave buffers its output and waits until just before the prompt is printed to flush it to the pager. </li> <p> <li>Expressions of the form <pre> A(i,j) = x </pre> where X is a scalar and the indices i and j define a matrix of elements now work as you would expect rather than giving an error. I am told that this is how Matlab 5.0 will behave when it is released. </li> <p> <li>Indexing of character strings now works. </li> <p> <li>The echo command has been implemented. </li> <p> <li>The document command is now a regular function. </li> <p> <li>New method for handling errors: <pre> try BODY catch CLEANUP end_try_catch </pre> Where BODY and CLEANUP are both optional and may contain any Octave expressions or commands. The statements in CLEANUP are only executed if an error occurs in BODY. <p> No warnings or error messages are printed while BODY is executing. If an error does occur during the execution of BODY, CLEANUP can access the text of the message that would have been printed in the builtin constant __error_text__. This is the same as eval (TRY, CATCH) (which may now also use __error_text__) but it is more efficient since the commands do not need to be parsed each time the TRY and CATCH statements are evaluated. </li> <p> <li>Octave no longer parses the help command by grabbing everything after the keyword `help' until a newline character is read. To get help for `;' or `,', now, you need to use the command `help semicolon' or `help comma'. </li> <p> <li>Octave's parser now does some simple constant folding. This means that expressions like 3*i are now evaluated only once, when a function is compiled, and the right hand side of expressions like a = [1,2;3,4] are treated as true matrix constants rather than lists of elements which must be evaluated each time they are needed. </li> <p> <li>Built-in variables that can take values of "true" and "false" can now also be set to any nonzero scalar value to indicate "true", and 0 to indicate "false". </li> <p> <li>New built-in variables `history_file', `history_size', and `saving_history'. </li> <p> <li>New built-in variable `string_fill_char' specifies the character to fill with when creating arrays of strings. </li> <p> <li>If the new built-in variable `gnuplot_has_frames' is nonzero, Octave assumes that your copy of gnuplot includes support for multiple plot windows when using X11. If the new built-in variable `gnuplot_has_multiplot' is nonzero, Octave assumes that your copy of gnuplot has the multiplot support that is included in recent 3.6beta releases. The initial values of these variables are determined by configure, but can be changed in your startup script or at the command line in case configure got it wrong, or if you upgrade your gnuplot installation. </li> <p> <li>The new plot function `figure' allows multiple plot windows when using newer versions of gnuplot with X11. </li> <p> <li>Octave now notices when the plotter has exited unexpectedly. </li> <p> <li>New built-in variable `warn_missing_semicolon'. If nonzero, Octave will warn when statements in function definitions don't end in semicolons. The default value is 0. </li> <p> <li>Octave now attempts to continue after floating point exceptions or out-of-memory errors. </li> <p> <li>If Octave crashes, it now attempts to save all user-defined variables in a file named `octave-core' in the current directory before exiting. </li> <p> <li>It is now possible to get the values of individual option settings for the dassl, fsolve, lsode, npsol, qpsol, and quad functions using commands like <pre> dassl_reltol = dassl_options ("relative tolerance"); </pre> </li> <p> <li>The svd() function no longer computes the left and right singular matrices unnecessarily. This can significantly improve performance for large matrices if you are just looking for the singular values. </li> <p> <li>The filter() function is now a built-in function. </li> <p> <li>New function randn() returns a pseudo-random number from a normal distribution. The rand() and randn() functions have separate seeds and generators. </li> <p> <li>Octave's command-line arguments are now available in the built-in variable `argv'. The program name is also available in the variables `program_invocation_name' and `program_name'. If executing a script from the command line (e.g., octave foo.m) or using the `#! /bin/octave' hack, the program name is set to the name of the script. </li> <p> <li>New built-in variable `completion_append_char' used as the character to append to successful command-line completion attempts. The default is " " (a single space). </li> <p> <li>Octave now uses a modified copy of the readline library from version 1.14.5 of GNU bash. </li> <p> <li>In prompt strings, `\H' expands to the whole host name. </li> <p> <li>New built-in variable `beep_on_error'. If nonzero, Octave will try to ring your terminal's bell before printing an error message. The default value is 0. </li> <p> <li>For functions defined from files, the type command now prints the text of the file. You can still get the text reconstructed from the parse tree by using the new option -t (-transformed). </li> <p> <li>New command-line argument --traditional sets the following preference variables for compatibility with Matlab: <pre> PS1 = ">> " PS2 = "" beep_on_error = 1 default_save_format = "mat-binary" define_all_return_values = 1 do_fortran_indexing = 1 empty_list_elements_ok = 1 implicit_str_to_num_ok = 1 ok_to_lose_imaginary_part = 1 page_screen_output = 0 prefer_column_vectors = 0 prefer_zero_one_indexing = 1 print_empty_dimensions = 0 treat_neg_dim_as_zero = 1 warn_function_name_clash = 0 whitespace_in_literal_matrix = "traditional" </pre> </li> <p> <li>New functions: <dl> <dt><b>readdir</b></dt> <dd>returns names of files in directory as array of strings </dd> <dt><b>mkdir</b></dt> <dd>create a directory </dd> <dt><b>rmdir</b></dt> <dd>remove a directory </dd> <dt><b>rename</b></dt> <dd>rename a file </dd> <dt><b>unlink</b></dt> <dd>delete a file </dd> <dt><b>umask</b></dt> <dd>set permission mask for file creation </dd> <dt><b>stat</b></dt> <dd>get information about a file </dd> <dt><b>lstat</b></dt> <dd>get information about a symbolic link </dd> <dt><b>glob</b></dt> <dd>perform filename globbing </dd> <dt><b>fnmatch</b></dt> <dd>match strings with filename globbing patterns </dd> <dt><b>more</b></dt> <dd>turn the pager on or off </dd> <dt><b>gammaln</b></dt> <dd>alias for lgamma </dd> </dl> </li> <p> <li>New audio functions from Andreas Weingessel: <dl> <dt><b>lin2mu</b></dt> <dd>linear to mu-law encoding </dd> <dt><b>loadaudio</b></dt> <dd>load an audio file to a vector </dd> <dt><b>mu2lin</b></dt> <dd>mu-law to linear encoding </dd> <dt><b>playaudio</b></dt> <dd>play an audio file </dd> <dt><b>record</b></dt> <dd>record sound and store in vector </dd> <dt><b>saveaudio</b></dt> <dd>save a vector as an audio file </dd> <dt><b>setaudio</b></dt> <dd>executes mixer shell command </dd> </dl> </li> <p> <li>New plotting functions from Vinayak Dutt. Ones dealing with multiple plots on one page require features from gnuplot 3.6beta (or later). <dl> <dt><b>bottom_title</b></dt> <dd>put title at the bottom of the plot </dd> <dt><b>mplot</b></dt> <dd>multiplot version of plot </dd> <dt><b>multiplot</b></dt> <dd>switch multiple-plot mode on or off </dd> <dt><b>oneplot</b></dt> <dd>return to one plot per page </dd> <dt><b>plot_border</b></dt> <dd>put a border around plots </dd> <dt><b>subplot</b></dt> <dd>position multiple plots on a single page </dd> <dt><b>subwindow</b></dt> <dd>set subwindow position for next plot </dd> <dt><b>top_title</b></dt> <dd>put title at the top of the plot </dd> <dt><b>zlabel</b></dt> <dd>put a label on the z-axis </dd> </dl> </li> <p> <li>New string functions <dl> <dt><b>bin2dec</b></dt> <dd>convert a string of ones and zeros to an integer </dd> <dt><b>blanks</b></dt> <dd>create a string of blanks </dd> <dt><b>deblank</b></dt> <dd>delete trailing blanks </dd> <dt><b>dec2bin</b></dt> <dd>convert an integer to a string of ones and zeros </dd> <dt><b>dec2hex</b></dt> <dd>convert an integer to a hexadecimal string </dd> <dt><b>findstr</b></dt> <dd>locate occurrences of one string in another </dd> <dt><b>hex2dec</b></dt> <dd>convert a hexadecimal string to an integer </dd> <dt><b>index</b></dt> <dd>return position of first occurrence a string in another </dd> <dt><b>rindex</b></dt> <dd>return position of last occurrence a string in another </dd> <dt><b>split</b></dt> <dd>divide one string into pieces separated by another </dd> <dt><b>str2mat</b></dt> <dd>create a string matrix from a list of strings </dd> <dt><b>strrep</b></dt> <dd>replace substrings in a string </dd> <dt><b>substr</b></dt> <dd>extract a substring </dd> </dl> <p> The following functions return a matrix of ones and zeros. Elements that are nonzero indicate that the condition was true for the corresponding character in the string array. <dl> <dt><b>isalnum</b></dt> <dd>letter or a digit </dd> <dt><b>isalpha</b></dt> <dd>letter </dd> <dt><b>isascii</b></dt> <dd>ascii </dd> <dt><b>iscntrl</b></dt> <dd>control character </dd> <dt><b>isdigit</b></dt> <dd>digit </dd> <dt><b>isgraph</b></dt> <dd>printable (but not space character) </dd> <dt><b>islower</b></dt> <dd>lower case </dd> <dt><b>isprint</b></dt> <dd>printable (including space character) </dd> <dt><b>ispunct</b></dt> <dd>punctuation </dd> <dt><b>isspace</b></dt> <dd>whitespace </dd> <dt><b>isupper</b></dt> <dd>upper case </dd> <dt><b>isxdigit</b></dt> <dd>hexadecimal digit </dd> </dl> <p> These functions return new strings. <dl> <dt><b>tolower</b></dt> <dd>convert to lower case </dd> <dt><b>toupper</b></dt> <dd>convert to upper case </dd> </dl> </li> <p> <li>New function, fgetl. Both fgetl and fgets accept an optional second argument that specifies a maximum number of characters to read, and the function fgets is now compatible with Matlab. </li> <p> <li>Printing in hexadecimal format now works (format hex). It is also possible to print the internal bit representation of a value (format bit). Note that these formats are only implemented for numeric values. </li> <p> <li>Additional structure features: <ul> <li>Name completion now works for structures. </li> <li>Values and names of structure elements are now printed by default. The new built-in variable `struct_levels_to_print' controls the depth of nested structures to print. The default value is 2. </li> <li>New functions: <dl> <dt><b>struct_contains (S, NAME)</b></dt> <dd>returns 1 if S is a structure with element NAME; otherwise returns 0. </dd> <dt><b>struct_elements (S)</b></dt> <dd>returns the names of all elements of structure S in an array of strings. </dd> </dl> </li> </ul> </li> <p> <li>New io/subprocess functions: <dl> <dt><b>fputs</b></dt> <dd>write a string to a file with no formatting </dd> <dt><b>popen2</b></dt> <dd>start a subprocess with 2-way communication </dd> <dt><b>mkfifo</b></dt> <dd>create a FIFO special file </dd> <dt><b>popen</b></dt> <dd>open a pipe to a subprocess </dd> <dt><b>pclose</b></dt> <dd>close a pipe from a subprocess </dd> <dt><b>waitpid</b></dt> <dd>check the status of or wait for subprocesses </dd> </dl> </li> <p> <li>New time functions: <dl> <dt><b>asctime</b></dt> <dd>format time structure according to local format </dd> <dt><b>ctime</b></dt> <dd>equivalent to `asctime (localtime (TMSTRUCT))' </dd> <dt><b>gmtime</b></dt> <dd>return time structure corresponding to UTC </dd> <dt><b>localtime</b></dt> <dd>return time structure corresponding to local time zone </dd> <dt><b>strftime</b></dt> <dd>print given time structure using specified format </dd> <dt><b>time</b></dt> <dd>return current time </dd> </dl> <p> The `clock' and `date' functions are now implemented in M-files using these basic functions. </li> <p> <li>Access to additional Unix system calls: <dl> <dt><b>dup2</b></dt> <dd>duplicate a file descriptor </dd> <dt><b>exec</b></dt> <dd>replace current process with a new process </dd> <dt><b>fcntl</b></dt> <dd>control open file descriptors </dd> <dt><b>fork</b></dt> <dd>create a copy of the current process </dd> <dt><b>getpgrp</b></dt> <dd>return the process group id of the current process </dd> <dt><b>getpid</b></dt> <dd>return the process id of the current process </dd> <dt><b>getppid</b></dt> <dd>return the process id of the parent process </dd> <dt><b>getuid</b></dt> <dd>return the real user id of the current process </dd> <dt><b>getgid</b></dt> <dd>return the real group id of the current process </dd> <dt><b>geteuid</b></dt> <dd>return the effective user id of the current process </dd> <dt><b>getegid</b></dt> <dd>return the effective group id of the current process </dd> <dt><b>pipe</b></dt> <dd>create an interprocess channel </dd> </dl> </li> <p> <li>Other new functions: <dl> <dt><b>commutation_matrix</b></dt> <dd>compute special matrix form </dd> <dt><b>duplication_matrix</b></dt> <dd>compute special matrix form </dd> <dt><b>common_size.m</b></dt> <dd>bring arguments to a common size </dd> <dt><b>completion_matches</b></dt> <dd>perform command completion on string </dd> <dt><b>tilde_expand</b></dt> <dd>perform tilde expansion on string </dd> <dt><b>meshgrid</b></dt> <dd>compatible with Matlab's meshgrid function </dd> <dt><b>tmpnam</b></dt> <dd>replaces octave_tmp_file_name </dd> <dt><b>atexit</b></dt> <dd>register functions to be called when Octave exits </dd> <dt><b>putenv</b></dt> <dd>define an environment variable </dd> <dt><b>bincoeff</b></dt> <dd>compute binomial coefficients </dd> <dt><b>nextpow2</b></dt> <dd>compute the next power of 2 greater than a number </dd> <dt><b>detrend</b></dt> <dd>remove a best fit polynomial from data </dd> <dt><b>erfinv</b></dt> <dd>inverse error function </dd> <dt><b>shift</b></dt> <dd>perform a circular shift on the elements of a matrix </dd> <dt><b>pow2</b></dt> <dd>compute 2 .^ x </dd> <dt><b>log2</b></dt> <dd>compute base 2 logarithms </dd> <dt><b>diff</b></dt> <dd>compute differences of matrix elements </dd> <dt><b>vech</b></dt> <dd>stack columns of a matrix below the diagonal </dd> <dt><b>vec</b></dt> <dd>stack columns of a matrix to form a vector </dd> <dt><b>xor</b></dt> <dd>compute exclusive or </dd> </dl> </li> <p> <li>Functions for getting info from the password database on Unix systems: <dl> <dt><b>getpwent</b></dt> <dd>read entry from password-file stream, opening if necessary </dd> <dt><b>getpwuid</b></dt> <dd>search for password entry with matching user ID </dd> <dt><b>getpwnam</b></dt> <dd>search for password entry with matching username </dd> <dt><b>setpwent</b></dt> <dd>rewind the password-file stream </dd> <dt><b>endpwent</b></dt> <dd>close the password-file stream </dd> </dl> </li> <p> <li>Functions for getting info from the group database on Unix systems: <dl> <dt><b>getgrent</b></dt> <dd>read entry from group-file stream, opening if necessary </dd> <dt><b>getgrgid</b></dt> <dd>search for group entry with matching group ID </dd> <dt><b>getgrnam</b></dt> <dd>search for group entry with matching group name </dd> <dt><b>setgrent</b></dt> <dd>rewind the pgroup-file stream </dd> <dt><b>endgrent</b></dt> <dd>close the group-file stream </dd> </dl> </li> <p> <li>The New function octave_config_info returns a structure containing information about how Octave was configured and compiled. </li> <p> <li>New function getrusage returns a structure containing system resource usage statistics. The `cputime' function is now defined in an M-file using getrusage. </li> <p> <li>The info reader is now a separate binary that runs as a subprocess. You still need the info reader distributed with Octave though, because there are some new command-line arguments that are not yet available in the public release of Info. </li> <p> <li>There is a new built-in variable, INFO_PROGRAM, which is used as the name of the info program to run. Its initial value is $OCTAVE_HOME/lib/octave/VERSION/exec/ARCH/info, but that value can be overridden by the environment variable OCTAVE_INFO_PROGRAM, or the command line argument --info-program NAME, or by setting the value of INFO_PROGRAM in a startup script. </li> <p> <li>There is a new built-in variable, EXEC_PATH, which is used as the list of directories to search when executing subprograms. Its initial value is taken from the environment variable OCTAVE_EXEC_PATH (if it exists) or PATH, but that value can be overridden by the command line argument --exec-path PATH, or by setting the value of EXEC_PATH in a startup script. If the EXEC_PATH begins (ends) with a colon, the directories $OCTAVE_HOME/lib/octave/VERSION/exec/ARCH and $OCTAVE_HOME/bin are prepended (appended) to EXEC_PATH (if you don't specify a value for EXEC_PATH explicitly, these special directories are prepended to your PATH). </li> <p> <li>If it is present, Octave will now use an `ls-R' database file to speed up recursive path searching. Octave looks for a file called ls-R in the directory specified by the environment variable OCTAVE_DB_DIR. If that is not set but the environment variable OCTAVE_HOME is set, Octave looks in $OCTAVE_HOME/lib/octave. Otherwise, Octave looks in the directory $datadir/octave (normally /usr/local/lib/octave). </li> <p> <li>New examples directory. </li> <p> <li>There is a new script, mkoctfile, that can be used to create .oct files suitable for dynamic linking. </li> <p> <li>Many more bug fixes. </li> <p> <li>ChangeLogs are now kept in each subdirectory.</li> </li> </ul> </body> </html>