| MATLAB® | ![]() |
| On this page… |
|---|
For help about the general syntax of MATLAB® functions and commands, type
help syntax
You can enter MATLAB commands using either a command or function syntax. It is important to learn the restrictions and interpretation rules for both.
functionname arg1 arg2 arg3 % Command syntax
functionname('arg1','arg2','arg3') % Function syntaxFor more information: See Calling Functions in the MATLAB Programming Fundamentals documentation.
You can continue most statements to one or more additional lines by terminating each incomplete line with an ellipsis (...). Breaking down a statement into a number of lines can sometimes result in a clearer programming style.
sprintf ('Example %d shows a command coded on %d lines.\n', ...
exampleNumber, ...
numberOfLines)Note that you cannot continue an incomplete string to another line.
disp 'This statement attempts to continue a string ...
to another line, resulting in an error.'For more information: See Entering Long Statements in the MATLAB Desktop Tools and Development Environment documentation.
You can save some typing when entering commands by entering only the first few letters of the command, variable, property, etc. followed by the Tab key. Typing the second line below (with T representing Tab) yields the expanded, full command shown in the third line:
f = figure; set(f, 'papTuT,'cT) % Type this line. set(f, 'paperunits','centimeters') % This is what you get.
If there are too many matches for the string you are trying to complete, you will get no response from the first Tab. Press Tab again to see all possible choices:
set(f, 'paTT PaperOrientation PaperPositionMode PaperType Parent PaperPosition PaperSize PaperUnits
For more information: See Tab Completion in the Command Window in the MATLAB Desktop Tools and Development Environment documentation
Use any of the following methods to simplify recalling previous commands to the screen:
To recall an earlier command to the screen, press the up arrow key one or more times, until you see the command you want. If you want to modify the recalled command, you can edit its text before pressing Enter or Return to execute it.
To recall a specific command by name without having to scroll through your earlier commands one by one, type the starting letters of the command, followed by the up arrow key.
Open the Command History window (View > Command History) to see all previous commands. Double-click the command you want to execute.
For more information: See Recalling Previous Lines and Command History Window in the MATLAB Desktop Tools and Development Environment documentation.
If you have typed a command that you then decide not to execute, you can clear it from the Command Window by pressing the Escape (Esc) key.
To suppress output to the screen, end statements with a semicolon. This can be particularly useful when generating large matrices.
A = magic(100); % Create matrix A, but do not display it.
![]() | Introduction | Help | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |