MATLAB Octave Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 28: Line 28:


=Executing Code=
=Executing Code=
=Display=
By default, the runtime displays 5 significant digits in human readable format ([[MATLAB_Octave_CLI#short|format short]] for scalars and [[MATLAB_Octave_CLI#looset|format loose]] for matrices).

Revision as of 17:50, 20 December 2017

Internal

Boolean Representation

"true" is represented as '1'.

"false" is represented as '0'.

Data Types

Numeric:

String:

a = 'some string'

Variables

Variables: local and global.

Other subjects:

Functions

Executing Code

Display

By default, the runtime displays 5 significant digits in human readable format (format short for scalars and format loose for matrices).