Simple File I/O (GNU Octave (version 9.1.0)) (2024)

Previous: Terminal Input, Up: Basic Input and Output [Contents][Index]

14.1.3 Simple File I/O

The save and load commands allow data to be written to andread from disk files in various formats. The default format of fileswritten by the save command can be controlled using the functionssave_default_options and save_precision.

As an example the following code creates a 3-by-3 matrix and saves itto the file ‘myfile.mat’.

A = [ 1:3; 4:6; 7:9 ];save myfile.mat A

Once one or more variables have been saved to a file, they can beread into memory using the load command.

load myfile.matA -| A = -| -| 1 2 3 -| 4 5 6 -| 7 8 9
: save file
: save options file
: save options file v1 v2
: save options file -struct STRUCT
: save options file -struct STRUCT f1 f2
: save - v1 v2
: str = save ("-", "v1", "v2", …)

Save the named variables v1, v2, …, in the file file.

The special filename ‘-’ may be used to return the content of thevariables as a string. If no variable names are listed, Octave saves all thevariables in the current scope. Otherwise, full variable names or patternsyntax can be used to specify the variables to save. If the -structmodifier is used then the fields of the scalar struct are saved as ifthey were variables with the corresponding field names. The -structoption can be combined with specific field names f1, f2, … towrite only certain fields to the file.

Valid options for the save command are listed in the following table.Options that modify the output format override the format specified bysave_default_options.

If save is invoked using the functional form

save ("-option1", ..., "file", "v1", ...)

then the options, file, and variable name arguments (v1,…) must be specified as character strings.

If called with a filename of "-", write the output to stdout if nargoutis 0, otherwise return the output in a character string.

-append

Append to the destination instead of overwriting.

-ascii

Save a matrix in a text file without a header or any other information. Thematrix must be 2-D and only the real part of any complex value is written tothe file. Numbers are stored in single-precision format and separated byspaces. Additional options for the -ascii format are

-double

Store numbers in double-precision format.

-tabs

Separate numbers with tabs.

-binary

Save the data in Octave’s binary data format.

-float-binary

Save the data in Octave’s binary data format but using only single precision.Use this format only if you know that all the values to be saved canbe represented in single precision.

-hdf5

Save the data in HDF5 format. (HDF5 is a free, portable, binary formatdeveloped by the National Center for Supercomputing Applications at theUniversity of Illinois.) This format is only available if Octave was builtwith a link to the HDF5 libraries.

-float-hdf5

Save the data in HDF5 format but using only single precision. Use thisformat only if you know that all the values to be saved can berepresented in single precision.

-text

Save the data in Octave’s text data format. (default)

-v7.3
-V7.3
-7.3

Octave does not yet implement saving in MATLAB’s v7.3 binarydata format.

-v7
-V7
-7
-mat7-binary

Save the data in MATLAB’s v7 binary data format.

-v6
-V6
-6
-mat
-mat-binary

Save the data in MATLAB’s v6 binary data format.

-v4
-V4
-4
-mat4-binary

Save the data in MATLAB’s v4 binary data format.

-zip
-z

Use the gzip algorithm to compress the file. This works on files that arecompressed with gzip outside of Octave, and gzip can also be used to convertthe files for backward compatibility. This option is only available if Octavewas built with a link to the zlib libraries.

The list of variables to save may use wildcard patterns (glob patterns)containing the following special characters:

?

Match any single character.

*

Match zero or more characters.

[ list ]

Match the list of characters specified by list. If the first characteris ! or ^, match all characters except those specified bylist. For example, the pattern [a-zA-Z] will match all lower anduppercase alphabetic characters.

Wildcards may also be used in the field name specifications when using the-struct modifier (but not in the struct name itself).

Except when using the MATLAB binary data file format or the ‘-ascii’format, saving global variables also saves the global status of the variable.If the variable is restored at a later time using ‘load’, it will berestored as a global variable.

Example:

The command

save -binary data a b*

saves the variable ‘a’ and all variables beginning with ‘b’ to thefile data in Octave’s binary format.

See also: load, save_default_options, save_header_format_string, save_precision, dlmread, csvread, fread.

There are three functions that modify the behavior of save.

: val = save_default_options ()
: old_val = save_default_options (new_val)
: old_val = save_default_options (new_val, "local")

Query or set the internal variable that specifies the default optionsfor the save command, and defines the default format.

The default value is "-text" (Octave’s own text-based file format).See the documentation of the save command for other choices.

When called from inside a function with the "local" option, thevariable is changed locally for the function and any subroutines it calls.The original variable value is restored when exiting the function.

See also: save, save_header_format_string, save_precision.

: val = save_precision ()
: old_val = save_precision (new_val)
: old_val = save_precision (new_val, "local")

Query or set the internal variable that specifies the number of digits tokeep when saving data in text format.

The default value is 17 which is the minimum necessary for the lossless savingand restoring of IEEE-754 double values; For IEEE-754 single values the minimumvalue is 9. If file size is a concern, it is probably better to choose abinary format for saving data rather than to reduce the precision of the savedvalues.

When called from inside a function with the "local" option, thevariable is changed locally for the function and any subroutines it calls.The original variable value is restored when exiting the function.

See also: save_default_options.

: val = save_header_format_string ()
: old_val = save_header_format_string (new_val)
: old_val = save_header_format_string (new_val, "local")

Query or set the internal variable that specifies the format string used forthe comment line written at the beginning of text-format data files saved byOctave.

The format string is passed to strftime and must begin with thecharacter ‘#’ and contain no newline characters. If the value ofsave_header_format_string is the empty string, the header comment isomitted from text-format data files. The default value is

"# Created by Octave VERSION, %a %b %d %H:%M:%S %Y %Z <USER@HOST>"

When called from inside a function with the "local" option, thevariable is changed locally for the function and any subroutines it calls.The original variable value is restored when exiting the function.

See also: strftime, save_default_options.

: load file
: load options file
: load options file v1 v2 …
: S = load ("options", "file", "v1", "v2", …)
: load file options
: load file options v1 v2 …
: S = load ("file", "options", "v1", "v2", …)

Load the named variables v1, v2, …, from the filefile.

If no variables are specified then all variables found in thefile will be loaded. As with save, the list of variables to extractcan be full names or use a pattern syntax. The format of the file isautomatically detected but may be overridden by supplying the appropriateoption.

If load is invoked using the functional form

load ("-option1", ..., "file", "v1", ...)

then the options, file, and variable name arguments(v1, …) must be specified as character strings.

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.

If invoked with a single output argument, Octave returns data insteadof inserting variables in the symbol table. If the data file containsonly numbers (TAB- or space-delimited columns), a matrix of values isreturned. Otherwise, load returns a structure with members corresponding to the names of the variables in the file.

The load command can read data stored in Octave’s text andbinary formats, and MATLAB’s binary format. If compiled with zlibsupport, it can also load gzip-compressed files. It will automaticallydetect the type of file and do conversion from different floating pointformats (currently only IEEE big and little endian, though other formatsmay be added in the future).

Valid options for load are listed in the following table.

-force

This option is accepted for backward compatibility but is ignored.Octave now overwrites variables currently in memory withthose of the same name found in the file.

-ascii

Force Octave to assume the file contains columns of numbers in text formatwithout any header or other information. Data in the file will be loadedas a single numeric matrix with the name of the variable derived from thename of the file.

-binary

Force Octave to assume the file is in Octave’s binary format.

-hdf5

Force Octave to assume the file is in HDF5 format. (HDF5 is a free,portable binary format developed by the National Center for SupercomputingApplications at the University of Illinois.) Note that Octave can onlyread HDF5 files that were created by itself with save or withMATLAB’s -v7.3 option (which saves in HDF5 format). Thisformat is only available if Octave was built with a link to the HDF5libraries.

-import

This option is accepted for backward compatibility but is ignored.Octave can now support multi-dimensional HDF data and automaticallymodifies variable names if they are invalid Octave identifiers.

-text

Force Octave to assume the file is in Octave’s text format.

-v7.3
-V7.3
-7.3

Force Octave to assume the file is in MATLAB’s v7.3 binary data format.As the v7.3 format is an HDF5 based format, those files often can also beopened with the "-hdf5" option. Note that Octave can notcurrently save in this format.

-v7
-V7
-7
-mat7-binary

Force Octave to assume the file is in MATLAB’s version 7 binary format.

-v6
-V6
-6
-mat
-mat-binary

Force Octave to assume the file is in MATLAB’s version 6 binary format.

-v4
-V4
-4
-mat4-binary

Force Octave to assume the file is in MATLAB’s version 4 binary format.

See also: save, dlmwrite, csvwrite, fwrite.

: str = fileread (filename)
: str = fileread (filename, param, value, …)

Read the contents of filename and return it as a string.

param, value are optional pairs of parameters and values. Validoptions are:

"Encoding"

Specify encoding used when reading from the file. This is a characterstring of a valid encoding identifier. The default is"utf-8".

See also: fopen, fread, fscanf, importdata, textscan, type.

: fmtstr = native_float_format ()

Return the native floating point format as a string.

It is possible to write data to a file in a similar way to thedisp function for writing data to the screen. The fdispworks just like disp except its first argument is a file pointeras created by fopen. As an example, the following code writesto data ‘myfile.txt’.

fid = fopen ("myfile.txt", "w");fdisp (fid, "3/8 is ");fdisp (fid, 3/8);fclose (fid);

See Opening and Closing Files, for details on how to use fopenand fclose.

: fdisp (fid, x)

Display the value of x on the stream fid.

For example:

fdisp (stdout, "The value of pi is:"), fdisp (stdout, pi) -| the value of pi is: -| 3.1416

Note that the output from fdisp always ends with a newline.

See also: disp.

Octave can also read and write matrices text files such as commaseparated lists.

: dlmwrite (file, M)
: dlmwrite (file, M, delim, r, c)
: dlmwrite (file, M, key, val …)
: dlmwrite (file, M, "-append", …)
: dlmwrite (fid, …)

Write the numeric matrix M to the text file file using adelimiter.

file should be a filename or a writable file ID given by fopen.

The parameter delim specifies the delimiter to use to separate valueson a row. If no delimiter is specified the comma character ‘,’ isused.

The value of r specifies the number of delimiter-only lines to add tothe start of the file.

The value of c specifies the number of delimiters to prepend to eachline of data.

If the argument "-append" is given, append to the end of file.

In addition, the following keyword value pairs may appear at the end ofthe argument list:

"append"

Either "on" or "off". See "-append" above.

"delimiter"

See delim above.

"newline"

The character(s) to separate each row. Three special cases exist for thisoption. "unix" is changed into "\n","pc" is changed into "\r\n",and "mac" is changed into "\r". Any othervalue is used directly as the newline separator.

"roffset"

See r above.

"coffset"

See c above.

"precision"

The precision to use when writing the file. It can either be a formatstring (as used by fprintf) or a number of significant digits.

dlmwrite ("file.csv", reshape (1:16, 4, 4));
dlmwrite ("file.tex", a, "delimiter", "&", "newline", "\n")

See also: dlmread, csvread, csvwrite.

: data = dlmread (file)
: data = dlmread (file, sep)
: data = dlmread (file, sep, r0, c0)
: data = dlmread (file, sep, range)
: data = dlmread (…, "emptyvalue", EMPTYVAL)

Read numeric data from the text file file which uses the delimitersep between data values.

If sep is not defined the separator between fields is determined fromthe file itself.

The optional scalar arguments r0 and c0 define the starting rowand column of the data to be read. These values are indexed from zero,i.e., the first data row corresponds to an index of zero.

The range parameter specifies exactly which data elements are read.The first form of the parameter is a 4-element vector containing the upperleft and lower right corners [R0,C0,R1,C1]where the indices are zero-based. To specify the last column—the equivalentof end when indexing—use the specifier Inf. Alternatively, aspreadsheet style form such as "A2..Q15" or "T1:AA5" can beused. The lowest alphabetical index 'A' refers to the first column.The lowest row index is 1.

file should be a filename or a file id given by fopen. In thelatter case, the file is read until end of file is reached.

The "emptyvalue" option may be used to specify the value used tofill empty fields. The default is zero. Note that any non-numeric values,such as text, are also replaced by the "emptyvalue".

See also: csvread, textscan, dlmwrite.

: csvwrite (filename, x)
: csvwrite (filename, x, dlm_opt1, …)

Write the numeric matrix x to the file filename incomma-separated-value (CSV) format.

This function is equivalent to

dlmwrite (filename, x, ",", dlm_opt1, ...)

Any optional arguments are passed directly to dlmwrite(see dlmwrite).

See also: csvread, dlmwrite, dlmread.

: x = csvread (filename)
: x = csvread (filename, dlm_opt1, …)

Read the comma-separated-value (CSV) file filename into the matrixx.

Note: only CSV files containing numeric data can be read.

This function is equivalent to

x = dlmread (filename, "," , dlm_opt1, ...)

Any optional arguments are passed directly to dlmread(see dlmread).

See also: dlmread, textscan, csvwrite, dlmwrite.

Formatted data from can be read from, or written to, text files as well.

: [a, …] = textread (filename)
: [a, …] = textread (filename, format)
: [a, …] = textread (filename, format, n)
: [a, …] = textread (filename, format, prop1, value1, …)
: [a, …] = textread (filename, format, n, prop1, value1, …)

This function is obsolete. Use textscan instead.

Read data from a text file.

The file filename is read and parsed according to format. Thefunction behaves like strread except it works by parsing a fileinstead of a string. See the documentation of strread for details.

In addition to the options supported by strread, this functionsupports two more:

  • "headerlines":The first value number of lines of filename are skipped.
  • "endofline":Specify a single character or"\r\n". If no value is given, itwill be inferred from the file. If set to "" (empty string) EOLsare ignored as delimiters.

The optional input n (format repeat count) specifies the number oftimes the format string is to be used or the number of lines to be read,whichever happens first while reading. The former is equivalent torequesting that the data output vectors should be of length N.Note that when reading files with format strings referring to multiplelines, n should rather be the number of lines to be read than thenumber of format string uses.

If the format string is empty (not just omitted) and the file contains onlynumeric data (excluding headerlines), textread will return a rectangularmatrix with the number of columns matching the number of numeric fields onthe first data line of the file. Empty fields are returned as zero values.

Examples:

 Assume a data file like: 1 a 2 b 3 c 4 d 5 e
 [a, b] = textread (f, "%f %s") returns two columns of data, one with doubles, the other a cellstr array: a = [1; 2; 3; 4; 5] b = {"a"; "b"; "c"; "d"; "e"}
 [a, b] = textread (f, "%f %s", 3) (read data into two culumns, try to use the format string three times) returns a = [1; 2; 3] b = {"a"; "b"; "c"}
 With a data file like: 1 a 2 b [a, b] = textread (f, "%f %s", 2) returns a = 1 and b = {"a"}; i.e., the format string is used only once because the format string refers to 2 lines of the data file. To obtain 2x1 data output columns, specify N = 4 (number of data lines containing all requested data) rather than 2.

See also: textscan, load, dlmread, fscanf, strread.

: C = textscan (fid, format)
: C = textscan (fid, format, repeat)
: C = textscan (fid, format, param, value, …)
: C = textscan (fid, format, repeat, param, value, …)
: C = textscan (str, …)
: [C, position, errmsg] = textscan (…)

Read data from a text file or string.

The string str or file associated with fid is read from andparsed according to format. The function is an extension ofstrread and textread. Differences include: the ability toread from either a file or a string, additional options, and additionalformat specifiers.

The input is interpreted as a sequence of words, delimiters (such aswhitespace), and literals. The characters that form delimiters andwhitespace are determined by the options. The format consists of formatspecifiers interspersed between literals. In the format, whitespace formsa delimiter between consecutive literals, but is otherwise ignored.

The output C is a cell array where the number of columns is determinedby the number of format specifiers.

The first word of the input is matched to the first specifier of the formatand placed in the first column of the output; the second is matched to thesecond specifier and placed in the second column and so forth. If thereare more words than specifiers then the process is repeated until all wordshave been processed or the limit imposed by repeat has been met (seebelow).

The string format describes how the words in str should beparsed. As in fscanf, any (non-whitespace) text in the format that isnot one of these specifiers is considered a literal. If there is a literalbetween two format specifiers then that same literal must appear in theinput stream between the matching words.

The following specifiers are valid:

%f
%f64
%n

The word is parsed as a number and converted to double.

%f32

The word is parsed as a number and converted to single (float).

%d
%d8
%d16
%d32
%d64

The word is parsed as a number and converted to int8, int16, int32, orint64. If no size is specified then int32 is used.

%u
%u8
%u16
%u32
%u64

The word is parsed as a number and converted to uint8, uint16, uint32, oruint64. If no size is specified then uint32 is used.

%s

The word is parsed as a string ending at the last character beforewhitespace, an end-of-line, or a delimiter specified in the options.

%q

The word is parsed as a "quoted string".If the first character of the string is a double quote (") then the stringincludes everything until a matching double quote—including whitespace,delimiters, and end-of-line characters. If a pair of consecutive doublequotes appears in the input, it is replaced in the output by a singledouble quote. For examples, the input "He said ""Hello""" wouldreturn the value ’He said "Hello"’.

%c

The next character of the input is read.This includes delimiters, whitespace, and end-of-line characters.

%[…]
%[^…]

In the first form, the word consists of the longest run consisting of onlycharacters between the brackets. Ranges of characters can be specified bya hyphen; for example, %[0-9a-zA-Z] matches all alphanumeric characters (ifthe underlying character set is ASCII). Since MATLAB treats hyphensliterally, this expansion only applies to alphanumeric characters. Toinclude ’-’ in the set, it should appear first or last in the brackets; toinclude ’]’, it should be the first character. If the first character is’^’ then the word consists of characters not listed.

%N…

For %s, %c %d, %f, %n, %u, an optional width can be specified as %Ns, etc.where N is an integer > 1. For %c, this causes exactly N characters to beread instead of a single character. For the other specifiers, it is anupper bound on the number of characters read; normal delimiters can causefewer characters to be read. For complex numbers, this limit applies tothe real and imaginary components individually. For %f and %n, formatspecifiers like %N.Mf are allowed, where M is an upper bound on number ofcharacters after the decimal point to be considered; subsequent digits areskipped. For example, the specifier %8.2f would read 12.345e6 as 1.234e7.

%*…

The word specified by the remainder of the conversion specifier is skipped.

literals

In addition the format may contain literal character strings; these will beskipped during reading. If the input string does not match this literal,the processing terminates.

Parsed words corresponding to the first specifier are returned in the firstoutput argument and likewise for the rest of the specifiers.

By default, if there is only one input argument, format is "%f".This means that numbers are read from the input into a single column vector.If format is explicitly empty ("") then textscan willreturn data in a number of columns matching the number of fields on thefirst data line of the input. Either of these is suitable only when theinput is exclusively numeric.

For example, the string

str = "\Bunny Bugs 5.5\n\Duck Daffy -7.5e-5\n\Penguin Tux 6"

can be read using

a = textscan (str, "%s %s %f");

The optional numeric argument repeat can be used for limiting thenumber of items read:

-1

Read all of the string or file until the end (default).

N

Read until the first of two conditions occurs: 1) the format has beenprocessed N times, or 2) N lines of the input have been processed. Zero(0) is an acceptable value for repeat. Currently, end-of-linecharacters inside %q, %c, and %[…]$ conversions do not contribute tothe line count. This is incompatible with MATLAB and may change infuture.

The behavior of textscan can be changed via property/value pairs.The following properties are recognized:

"BufSize"

This specifies the number of bytes to use for the internal buffer.A modest speed improvement may be obtained by setting this to a large valuewhen reading a large file, especially if the input contains long strings.The default is 4096, or a value dependent on n if that is specified.

"CollectOutput"

A value of 1 or true instructs textscan to concatenate consecutivecolumns of the same class in the output cell array. A value of 0 or false(default) leaves output in distinct columns.

"CommentStyle"

Specify parts of the input which are considered comments and will beskipped. value is the comment style and can be either (1) A stringor 1x1 cell string, to skip everything to the right of it; (2) A cell arrayof two strings, to skip everything between the first and second strings.Comments are only parsed where whitespace is accepted and do not act asdelimiters.

"Delimiter"

If value is a string, any character in value will be used tosplit the input into words. If value is a cell array of strings,any string in the array will be used to split the input into words.(default value = any whitespace.)

"EmptyValue"

Value to return for empty numeric values in non-whitespace delimited data.The default is NaN. When the data type does not support NaN (int32 forexample), then the default is zero.

"EndOfLine"

value can be either an empty or one character specifying theend-of-line character, or the pair"\r\n" (CRLF).In the latter case, any of"\r", "\n" or"\r\n" is counted as a (single)newline. If no value is given,"\r\n" is used.

"HeaderLines"

The first value number of lines of fid are skipped. Note thatthis does not refer to the first non-comment lines, but the first lines ofany type.

"MultipleDelimsAsOne"

If value is nonzero, treat a series of consecutive delimiters,without whitespace in between, as a single delimiter. Consecutivedelimiter series need not be vertically aligned. Without this option, asingle delimiter before the end of the line does not cause the line to beconsidered to end with an empty value, but a single delimiter at the startof a line causes the line to be considered to start with an empty value.

"TreatAsEmpty"

Treat single occurrences (surrounded by delimiters or whitespace) of thestring(s) in value as missing values.

"ReturnOnError"

If set to numerical 1 or true, return normally as soon as an error isencountered, such as trying to read a string using %f.If set to 0 or false, return an error and no data.

"Whitespace"

Any character in value will be interpreted as whitespace and trimmed;The default value for whitespace is"\b\r\n\t"(note the space). Unless whitespace is set to "" (empty) AND atleast one "%s" format conversion specifier is supplied, a space isalways part of whitespace.

When the number of words in str or fid doesn’t match an exactmultiple of the number of format conversion specifiers, textscan’sbehavior depends on whether the last character of the string or file is anend-of-line as specified by the EndOfLine option:

last character = end-of-line

Data columns are padded with empty fields, NaN or 0 (for integer fields) sothat all columns have equal length

last character is not end-of-line

Data columns are not padded; textscan returns columns of unequallength

The second output position provides the location, in charactersfrom the beginning of the file or string, where processing stopped.

See also: dlmread, fscanf, load, strread, textread.

The importdata function has the ability to work with a widevariety of data.

: A = importdata (fname)
: A = importdata (fname, delimiter)
: A = importdata (fname, delimiter, header_rows)
: [A, delimiter] = importdata (…)
: [A, delimiter, header_rows] = importdata (…)

Import data from the file fname.

Input parameters:

  • fnameThe name of the file containing data.
  • delimiterThe character separating columns of data. Use \t for tab.(Only valid for ASCII files)
  • header_rowsThe number of header rows before the data begins. (Only valid for ASCIIfiles)

Different file types are supported:

  • ASCII table

    Import ASCII table using the specified number of header rows and thespecified delimiter.

  • Image file
  • MATLAB file
  • Spreadsheet files (depending on external software)
  • WAV file

See also: textscan, dlmread, csvread, load.

After importing, the data may need to be transformed before further analysis.The rescale function can shift and normalize a data set to a specifiedrange.

: B = rescale (A)
: B = rescale (A, l, u)
: B = rescale (…, "inputmin", inmin)
: B = rescale (…, "inputmax", inmax)

Scale matrix elements to a specified range of values.

When called with a single matrix argument A, rescale elements tooccupy the interval [0, 1].

The optional inputs [l, u] will scale A to theinterval with lower bound l and upper bound u.

The optional input "inputmin" replaces all elements less thanthe specified value inmin with inmin. Similarly, the optionalinput "inputmax" replaces all elements greater than the specifiedvalue inmax with inmax. If unspecified the minimum and maximumare taken from the data itself (inmin=min(A(:)) andinmax=max(A(:))).

Programming Notes:The applied formula is

B = l + ((A - inmin) ./ (inmax - inmin)).* (u - l)

The class of the output matrix B is single if the input A issingle, but otherwise is of class double for inputs which are of double,integer, or logical type.

See also: bounds, min, max.

  • Saving Data on Unexpected Exits
Simple File I/O (GNU Octave (version 9.1.0)) (2024)

FAQs

What is GNU Octave used for? ›

GNU Octave is a scientific programming language for scientific computing and numerical computation. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with MATLAB. It may also be used as a batch-oriented language.

How do I run an Octave file? ›

Scripts which reside in directories specified in Octave's load path, and which end with the extension ". m" , can be run simply by typing their name. For scripts not located on the load path, use run . The filename script can be a bare, fully qualified, or relative filename and with or without a file extension.

How to read a file in Octave? ›

Function File: C = textscan ( fid , format , n , param , value , …) Read data from a text file or string. The string str or file associated with fid is read from and parsed according to format . The function behaves like strread except it can also read from file instead of a string.

What is Octave file extension? ›

An oct-file is a dynamical extension of the Octave interpreter, in other words a shared library or shared object. The source files, that make up an oct-file, are written in C++, and therefore, conventionally, carry the extension cc.

What is the purpose of Octave? ›

The octave sets the tone for the rest of the poem, creating a sense of harmony and balance within the work. The lines within an octave can follow a variety of rhyme schemes depending on the poet's preference.

What is a GNU used for? ›

What is GNU? GNU is an operating system that is free software—that is, it respects users' freedom. The GNU operating system consists of GNU packages (programs specifically released by the GNU Project) as well as free software released by third parties.

Can Octave run on Windows? ›

The easiest way to install GNU Octave on Microsoft Windows is by using MXE builds. For the current release, both 32-bit and 64-bit installers and zip archived packages (. zip and . 7z formats) can be found at https://octave.org/download under the Windows tab.

How do I launch GNU Octave? ›

On most systems, the way to invoke Octave is with the shell command `octave' . Octave displays an initial message and then a prompt indicating it is ready to accept input. You can begin typing Octave commands immediately afterward.

Can Octave read Excel files? ›

On Windows, Octave with a loaded Octave-Forge windows package can invoke MS-Excel for spreadsheet I/O but only 32-bit MS-Office; 64-bit MS-Office does not support ActiveX. In this case it doesn't matter much whether Octave is 32-bit or 64-bit.

Can Octave read .m files? ›

Although Octave normally executes commands from script files that have the name file . m , you can use the function source to execute commands from any file. Parse and execute the contents of file .

How do you use Octave command? ›

Normally, Octave is used interactively by running the program ' octave ' without any arguments. Once started, Octave reads commands from the terminal until you tell it to exit.

How do I open an image in Octave? ›

The first step in most image processing tasks is to load an image into Octave which is done with the imread function. The imwrite function is the corresponding function for writing images to the disk. Read images from various file formats. Reads an image as a matrix from the file filename .

What is an example of Octave? ›

More precisely, an octave is the interval between two pitches where one has a frequency, or rate of vibration, that is twice as fast as the other. For example, the pitch created by a string that vibrates 440 times per second is an octave above the pitch created by a string that vibrates 220 times per second.

How to run an Octave code? ›

Octave usage

To execute a script from within Octave, just type its name without the . m extension. Thus, if you have a script called foo. m , just type foo from within the Octave command prompt to execute it.

How to code in GNU Octave? ›

1.2. 2 Creating a Matrix
  1. octave:1> A = [ 1, 1, 2; 3, 5, 8; 13, 21, 34 ] Octave will respond by printing the matrix in neatly aligned columns. ...
  2. octave:2> B = rand (3, 2); will create a 3 row, 2 column matrix with each element set to a random value between zero and one. ...
  3. octave:3> B.

What is the basic function of Octave? ›

The function body consists of Octave statements. It is the most important part of the definition, because it says what the function should actually do. The printf statement (see section Input and Output) simply tells Octave to print the string "\a" . The special character `\a' stands for the alert character (ASCII 7).

What is the difference between MATLAB and GNU Octave? ›

The main difference with Matlab is a matter of scope. While nested functions have access to the parent function's scope in Matlab, no such thing is available in Octave, due to how Octave essentially “un-nests” nested functions.

What are the disadvantages of GNU Octave? ›

Speed: Octave is generally slower than MATLAB, particularly when it comes to large-scale computations and complex operations. Toolboxes: Octave has fewer built-in toolboxes and functions than MATLAB, which might limit its capabilities for certain specialized tasks.

Is Octave better than Python? ›

It is not as commonly used for large-scale production deployments. Interoperability: While both Octave and Python can work with other programming languages, Python has better interoperability with external libraries and systems.

Top Articles
Latest Posts
Article information

Author: Manual Maggio

Last Updated:

Views: 5750

Rating: 4.9 / 5 (69 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Manual Maggio

Birthday: 1998-01-20

Address: 359 Kelvin Stream, Lake Eldonview, MT 33517-1242

Phone: +577037762465

Job: Product Hospitality Supervisor

Hobby: Gardening, Web surfing, Video gaming, Amateur radio, Flag Football, Reading, Table tennis

Introduction: My name is Manual Maggio, I am a thankful, tender, adventurous, delightful, fantastic, proud, graceful person who loves writing and wants to share my knowledge and understanding with you.