Installation guide

Entering Statements in the Edito r/Debugger
Multiple Possible Completions
If there is m ore than one name that starts with the characters you typed, when
you press the Tab key, the Editor/Debugger displays a list o f all names that
start with those characters. For example, assume you h ad created the variable
costs_march inthebaseworkspace.InanM-fileintheEditor/Debugger,type
cos
and press Tab. The Editor/Debugger displays
The resulting list of possible completions includes the variable name you
created,
costs_march, but also includes functions a nd models that begin with
cos, including cosets from Communications Toolbox, if it is installed and on
the MATLAB search path.
Continue typing to make your entry unique. For example, type the next
character, such as
t in the example. The Ed itor/Debug ger selects the first
item in the list that matches what you typed, in this case,
costs_march.Press
Enter (or Return)orTab to select that item, which completes the name in
the M-file. In the example, MATLAB displays
costs_march at the prompt.
6-23