Expands Octave's core functionality by providing field specific features via Octave's package system Image and signal processing, fuzzy logic, instrument control, and statistics and more! Full list of packages; The project has been selected as SourceForge Project of the Month in October 2017.
There are two distinct classes of input and output functions. The firstset are modeled after the functions available in MATLAB. Thesecond set are modeled after the standard I/O library used by the Cprogramming language. The C-style I/O functions offer more flexibilityand control over the output, but are not quite as easy to use as thesimpler MATLAB-style I/O functions.
When running interactively, Octave normally sends any output intendedfor your terminal that is more than one screen long to a paging program,such as less
or more
. This avoids the problem of havinga large volume of output stream by before you can read it. Withless
(and some versions of more
) it also allows you toscan forward and backward, and search for specific items.
No output is displayed by the pager until just before Octave is ready toprint the top level prompt, or read from the standard input using thefscanf
or scanf
functions. This means that there may besome delay before any output appears on your screen if you have askedOctave to perform a significant amount of work with a single commandstatement. The function fflush
may be used to force output to besent to the pager immediately. See section C-Style I/O Functions.
You can select the program to run as the pager by setting the variablePAGER
, and you can turn paging off by setting the value of thevariable page_screen_output
to the string `'false'.See section User Preferences.
Since Octave normally prints the value of an expression as soon as ithas been evaluated, the simplest of all I/O functions is a simpleexpression. For example, the following expression will display thevalue of pi
This works well as long as it is acceptable to have the name of thevariable (or `ans') printed along with the value. To print thevalue of a variable without printing its name, use the functiondisp
. For example, the following expression
will print
Note that the output from disp
always ends with a newline.
A simple way to control the output format is with the format
statement. For example, to print more digits for pi you can use thecommand
Then the expression above will print
Here is a summary of the options for format
:
long
long e
short e
long E
short E
free
none
bank
+
The input
function may be used for prompting the user for avalue and storing the result in a variable. For example,
prints the prompt
and waits for the user to enter a value. The string entered by the useris evaluated as an expression, so it may be a literal constant, avariable name, or any other valid expression.
Currently, input
only returns one value, regardless of the numberof values produced by the evaluation of the expression.
If you are only interested in getting a literal string value, you cancall input
with the character string `s' as the secondargument. This tells Octave to return the string entered by the userdirectly, without evaluating it first.
Because there may be output waiting to be displayed by the pager, it isa good idea to always call fflush (stdout)
before callinginput
. This will ensure that all pending output is written tothe screen before your prompt. See section C-Style I/O Functions.
The second input function, keyboard
, is normally used for simpledebugging. Using keyboard
, it is possible to examine the valuesof variables within a function, and to assign newassign new variablesLike input
, it prompts the user for input, but no value isreturned, and it continues to prompt for input until the user types`quit', or `exit'.
If keyboard
is invoked without any arguments, a default prompt of`debug> ' is used.
For both of these functions, the normal command line history and editingfunctions are available at the prompt.
To save variables in a file, use the save
command. For example,the command
saves the variables `a', `b', and `c' in the file`data'.
The save command can read files in Octave's text and binaryformats as well as MATLAB's binary format. You can specify the defaultformat with the built-in variable default_save_format using one ofthe following values: 'binary'
or 'mat-binary'
. Theinitial default save format is Octave's text format.
You can use the built-in variable save_precision
to specify thenumber of digits to keep when saving data in text format.
The list of variables to save may include wildcard patterns containingthe following special characters:
The following options may be specified for save
.
-binary
default_save_format
.-float-binary
default_save_precision
. You should use this format only if youknow that all the values to be saved can be represented in singleprecision.-mat-binary
default_save_format
.-save-builtins
Saving global variables also saves the global status of the variable, sothat if it is restored at a later time using `load', it will berestored as a global variable.
To restore the values from a file, use the load
command. Forexample, to restore the variables saved in the file `data', use thecommand
Octave will refuse to overwrite existing variables unless you use theoption `-force'.
If a variable that is not marked as global is loaded from a file when aglobal symbol with the same name already exists, it is loaded in theglobal symbol table. Also, if a variable is marked as global in a fileand a local symbol exists, the local symbol is moved to the globalsymbol table and given the value from the file. Since it seems thatboth of these cases are likely to be the result of some sort of error,they will generate warnings.
As with save
, you may specify a list of variables and load
will only extract those variables with names that match.
The load
command can read data stored in Octave's text andbinary formats, and MATLAB's binary format. It will automaticallydetect the type of file and do conversion from different floating pointformats (currently only IEEE big and little endian, though other formatsmay added in the future).
The following options may be specified for save
.
-binary
-mat-binary
The C-style input and output functions provide most of the functionalityof the C programming language's standard I/O library. The argumentlists for some of the input functions are slightly different, however,because Octave has no way of passing arguments by reference.
In the following, file refers either to an integer file number(as returned by `fopen') or a file name.
There are three files that are always available:
For example,
opens the file `splat.dat' for reading. Opening a file that isalready open has no effect.
The possible values `mode' may have are
To close a file once you are finished with it, use the functionfclose (file)
. If an error is encountered while trying to closethe file, an error message is printed and fclose
returns 0.Otherwise, it returns 1.
This section describes how to call printf
and related functions.
The following functions are available for formatted output. They aremodelled after the C language functions of the same name.
The printf
function can be used to print any number of arguments.The template string argument you supply in a call providesinformation not only about the number of additional arguments, but alsoabout their types and what style should be used for printing them.
Ordinary characters in the template string are simply written to theoutput stream as-is, while conversion specifications introduced bya `%' character in the template cause subsequent arguments to beformatted and written to the output stream. For example,
produces output like
This example shows the use of the `%d' conversion to specify that ascalar argument should be printed in decimal notation, the `%s'conversion to specify printing of a string argument, and the `%%'conversion to print a literal `%' character.
There are also conversions for printing an integer argument as anunsigned value in octal, decimal, or hexadecimal radix (`%o',`%u', or `%x', respectively); or as a character value(`%c').
Floating-point numbers can be printed in normal, fixed-point notationusing the `%f' conversion or in exponential notation using the`%e' conversion. The `%g' conversion uses either `%e'or `%f' format, depending on what is more appropriate for themagnitude of the particular number.
You can control formatting more precisely by writing modifiersbetween the `%' and the character that indicates which conversionto apply. These slightly alter the ordinary behavior of the conversion.For example, most conversion specifications permit you to specify aminimum field width and a flag indicating whether you want the resultleft- or right-justified within the field.
The specific flags and modifiers that are permitted and theirinterpretation vary depending on the particular conversion. They're alldescribed in more detail in the following sections.
This section provides details about the precise syntax of conversionspecifications that can appear in a printf
templatestring.
Characters in the template string that are not part of aconversion specification are printed as-is to the output stream.
The conversion specifications in a printf
template string havethe general form:
For example, in the conversion specifier `%-10.8ld', the `-'is a flag, `10' specifies the field width, the precision is`8', the letter `l' is a type modifier, and `d' specifiesthe conversion style. (This particular type specifier says to print anumeric argument in decimal notation, with a minimum of 8 digitsleft-justified in a field at least 10 characters wide.)
In more detail, output conversion specifications consist of aninitial `%' character followed in sequence by:
printf
function, but is recognized to providecompatibility with the C language printf
.The exact options that are permitted and how they are interpreted vary between the different conversion specifiers. See the descriptions of theindividual conversions for information about the particular options thatthey use.
Here is a table summarizing what all the different conversions do:
scanf
for input(see section Table of Input Conversions).If the syntax of a conversion specification is invalid, unpredictablethings will happen, so don't do this. If there aren't enough functionarguments provided to supply values for all the conversionspecifications in the template string, or if the arguments are not ofthe correct types, the results are unpredictable. If you supply morearguments than conversion specifications, the extra argument values aresimply ignored; this is sometimes useful.
This section describes the options for the `%d', `%i',`%o', `%u', `%x', and `%X' conversionspecifications. These conversions print integers in various formats.
The `%d' and `%i' conversion specifications both print annumeric argument as a signed decimal number; while `%o',`%u', and `%x' print the argument as an unsigned octal,decimal, or hexadecimal number (respectively). The `%X' conversionspecification is just like `%x' except that it uses the characters`ABCDEF' as digits instead of `abcdef'.
The following flags are meaningful:
If a precision is supplied, it specifies the minimum number of digits toappear; leading zeros are produced if necessary. If you don't specify aprecision, the number is printed with as many digits as it needs. Ifyou convert a value of zero with an explicit precision of zero, then nocharacters at all are produced.
This section discusses the conversion specifications for floating-pointnumbers: the `%f', `%e', `%E', `%g', and `%G'conversions.
The `%f' conversion prints its argument in fixed-point notation,producing output of the form[-
]ddd.
ddd,where the number of digits following the decimal point is controlledby the precision you specify.
The `%e' conversion prints its argument in exponential notation,producing output of the form[-
]d.
ddde
[+
|-
]dd.Again, the number of digits following the decimal point is controlled bythe precision. The exponent always contains at least two digits. The`%E' conversion is similar but the exponent is marked with the letter`E' instead of `e'.
The `%g' and `%G' conversions print the argument in the styleof `%e' or `%E' (respectively) if the exponent would be lessthan -4 or greater than or equal to the precision; otherwise they use the`%f' style. Trailing zeros are removed from the fractional portionof the result and a decimal-point character appears only if it isfollowed by a digit.
The following flags can be used to modify the behavior:
The precision specifies how many digits follow the decimal-pointcharacter for the `%f', `%e', and `%E' conversions. Forthese conversions, the default precision is 6
. If the precisionis explicitly 0
, this suppresses the decimal point characterentirely. For the `%g' and `%G' conversions, the precisionspecifies how many significant digits to print. Significant digits arethe first digit before the decimal point, and all the digits after it.If the precision is 0
or not specified for `%g' or`%G', it is treated like a value of 1
. If the value beingprinted cannot be expressed precisely in the specified number of digits,the value is rounded to the nearest number that fits.
This section describes miscellaneous conversions for printf
.
The `%c' conversion prints a single character. The `-' flag can be used to specify left-justification in the field, but noother flags are defined, and no precision or type modifier can be given.For example:
prints `hello'.
The `%s' conversion prints a string. The corresponding argumentmust be a string. A precision can be specified to indicate the maximumnumber of characters to write; otherwise characters in the string up tobut not including the terminating null character are written to theoutput stream. The `-' flag can be used to specifyleft-justification in the field, but no other flags or type modifiersare defined for this conversion. For example:
prints ` nowhere '.
Here are the descriptions of the functions for performing formattedinput.
When a matching failure occurs, scanf
returns immediately,leaving the first non-matching character as the next character to beread from the stream, and scanf
returns all the items that weresuccessfully converted.
The formatted input functions are not used as frequently as theformatted output functions. Partly, this is because it takes some careto use them properly. Another reason is that it is difficult to recoverfrom a matching error.
A scanf
template string is a string that contains ordinarymultibyte characters interspersed with conversion specifications thatstart with `%'.
Any whitespace character in the template causes any number of whitespacecharacters in the input stream to be read and discarded. The whitespacecharacters that are matched need not be exactly the same whitespacecharacters that appear in the template string. For example, write` , ' in the template to recognize a comma with optional whitespacebefore and after.
Other characters in the template string that are not part of conversionspecifications must match characters in the input stream exactly; ifthis is not the case, a matching failure occurs.
The conversion specifications in a scanf
template stringhave the general form:
In more detail, an input conversion specification consists of an initial`%' character followed in sequence by:
scanf
finds a conversionspecification that uses this flag, it reads input as directed by therest of the conversion specification, but it discards this input, doesnot use a pointer argument, and does not increment the count ofsuccessful assignments.scanf
function, but is recognized to providecompatibility with the C language scanf
.The exact options that are permitted and how they are interpreted vary between the different conversion specifiers. See the descriptions of theindividual conversions for information about the particular options thatthey allow.
Here is a table that summarizes the various conversion specifications:
If the syntax of a conversion specification is invalid, the behavior isundefined. If there aren't enough function arguments provided to supplyaddresses for all the conversion specifications in the template stringsthat perform assignments, or if the arguments are not of the correcttypes, the behavior is also undefined. On the other hand, extraarguments are simply ignored.
This section describes the scanf
conversions for reading numericvalues.
The `%d' conversion matches an optionally signed integer in decimalradix.
The `%i' conversion matches an optionally signed integer in any ofthe formats that the C language defines for specifying an integerconstant.
For example, any of the strings `10', `0xa', or `012'could be read in as integers under the `%i' conversion. Each ofthese specifies a number with decimal value 10
.
The `%o', `%u', and `%x' conversions match unsignedintegers in octal, decimal, and hexadecimal radices, respectively.
The `%X' conversion is identical to the `%x' conversion. Theyboth permit either uppercase or lowercase letters to be used as digits.
Unlike the C language scanf
, Octave ignores the `h',`l', and `L' modifiers.
This section describes the scanf
input conversions for readingstring and character values: `%s' and `%c'.
The `%c' conversion is the simplest: it matches a fixed number ofcharacters, always. The maximum field with says how many characters toread; if you don't specify the maximum, the default is 1. Thisconversion does not skip over initial whitespace characters. It readsprecisely the next n characters, and fails if it cannot get thatmany.
The `%s' conversion matches a string of non-whitespace characters.It skips and discards initial whitespace, but stops when it encountersmore whitespace after having read something.
For example, reading the input:
with the conversion `%10c' produces ' hello, wo'
, butreading the same input with the conversion `%10s' produces'hello,'
.
Octave has to C-style functions for reading and writing binary data.They are fread
and fwrite
and are patterned after thestandard C functions with the same names.
'schar'
, 'short'
,'int'
, 'long'
, 'float'
, 'double'
,'uchar'
, 'ushort'
, 'uint'
, or 'ulong'
. Thedefault precision is 'uchar'
.The fread
function returns two values, data
, which is thedata read from the file, and count
, which is the number ofelements read.fwrite (file, data, precision)
fopen
.The argument data is a matrix of values that are to be written tothe file. The values are extracted in column-major order.The argument precision is a string specifying the type of data toread and may be one of 'char'
, 'schar'
, 'short'
,'int'
, 'long'
, 'float'
, 'double'
,'uchar'
, 'ushort'
, 'uint'
, or 'ulong'
. Thedefault precision is 'uchar'
.The fwrite
function returns the number of elements written.The behavior of fwrite
is undefined if the values in dataare too large to fit in the specified precision.Read `len' characters from a file.
To flush output to a stream, use the function fflush (file)
.This is useful for ensuring that all pending output makes it to thescreen before some other event occurs. For example, it is always a goodidea to flush the standard output stream before calling input
.
Three functions are available for setting and determining the position ofthe file pointer for a given file.
The position of the file pointer (as the number of characters from thebeginning of the file) can be obtained using the the functionftell (file)
.
To set the file pointer to any location within the file, use thefunction fseek (file, offset, origin)
. The pointer is placedoffset
characters from the origin
, which may be one of thepredefined variables SEEK_CUR
(current position), SEEK_SET
(beginning), or SEEK_END
(end of file). If origin
isomitted, SEEK_SET
is assumed. The offset must be zero, or avalue returned by ftell
(in which case origin
must beSEEK_SET
. See section Predefined Constants.
The function frewind (file)
moves the file pointer to thebeginning of a file, returning 1 for success, and 0 if an error wasencountered. It is equivalent to fseek (file, 0, SEEK_SET)
.
The following example stores the current file position in the variable`marker', moves the pointer to the beginning of the file, readsfour characters, and then returns to the original position.
The function feof (file)
allows you to find out if anend-of-file condition has been encountered for a given file. Note thatit will only return 1 if the end of the file has already beenencountered, not if the next read operation will result in anend-of-file condition.
Similarly, the function ferror (file)
allows you to findout if an error condition has been encountered for a given file. Notethat it will only return 1 if an error has already been encountered, notif the next operation will result in an error condition.
The function kbhit
may be usd to read a single keystroke from thekeyboard. For example,
will set x to the next character typed at the keyboard, withoutrequiring a carriage return to be typed.
Finally, it is often useful to know exactly which files have beenopened, and whether they are open for reading, writing, or both. Thecommand freport
prints this information for all open files. Forexample,