omlpaginate
Sets the pagination mode for the display of matrices, cell arrays, structs, and strings in sequence so it is easily readable.
Syntax
omlpaginate(mode)
Inputs
- mode
 - Valid values of pagination mode are:
- 'on'/'off'
 - on displays the output in a format that is easily readable, without any user interaction.
 - interactive
 - Displays the output in an easily readable format, page-by-page, requiring user input in some cases.
 
 
Example
          omlpaginate('off');
          eye(15)
          % Entire matrix will be displayed at once
    ans = [Matrix] 15 x 15
    1  0  0  0  0  0  0  0  0  0  0  0  0  0  0
    0  1  0  0  0  0  0  0  0  0  0  0  0  0  0
    0  0  1  0  0  0  0  0  0  0  0  0  0  0  0
    0  0  0  1  0  0  0  0  0  0  0  0  0  0  0
    0  0  0  0  1  0  0  0  0  0  0  0  0  0  0
    0  0  0  0  0  1  0  0  0  0  0  0  0  0  0
    0  0  0  0  0  0  1  0  0  0  0  0  0  0  0
    0  0  0  0  0  0  0  1  0  0  0  0  0  0  0
    0  0  0  0  0  0  0  0  1  0  0  0  0  0  0
    0  0  0  0  0  0  0  0  0  1  0  0  0  0  0
    0  0  0  0  0  0  0  0  0  0  1  0  0  0  0
    0  0  0  0  0  0  0  0  0  0  0  1  0  0  0
    0  0  0  0  0  0  0  0  0  0  0  0  1  0  0
    0  0  0  0  0  0  0  0  0  0  0  0  0  1  0
    0  0  0  0  0  0  0  0  0  0  0  0  0  0  1