Installation guide

Controlling Output
--more--
indicating there is more output to display. Press one of the following keys.
Key
Action
Enter or Return
To advance to the next line
Space Bar To advance to the next page
q
To stop displaying the output
Yo u can scroll in the Command Window to see input and output that are no
longer in view. As an alternative to scrolling, you can use the up and down
arrow keys if the C ommand Window Accessibility preference is selected.
Formatting and Spacing Numeric Output
By default, numeric output in the Command Window is displayed as 5-digit
scaled, fixed-point values, called the short format. To change the numeric
format of output for the current and future sessions, set the Command
Window preference for text display. The text display format affects only how
numbers are shown, not how MATLAB computes or saves them.
Function Alternative
Use the format function to control the output format of the numeric values
displayed in the Command Window. The format you specify applies until you
change it or until the end of the session. More advanced alternatives are
listed in the “See Also” section of the
format reference page.
Examples of Formats
Here are a few examples of the various formats and the output produced from
the following two-element vec to r
x.
x = [4/3 1.2345e-6]
format short
1.3333 0.0000
format short e
3-31