Getting help in Matlab
Matlab has a fairly good on-line help; type
A D V E R T I S E M E N T
for more information on any given command. You do need to know the name of
the command that you are looking for; a list of the all the ones used in these
tutorials is given in the
command listing; a link to this page can be found at the bottom of every
tutorial and example page.
Here are a few notes to end this tutorial.
You can get the value of a particular variable at any time by typing its
name.
B
B = 1 2 3
4 5 6
7 8 9
You can also have more that one statement on a single line, so long as you
separate them with either a semicolon or comma.
Also, you may have noticed that so long as you don't assign a variable a
specific operation or result, Matlab with store it in a temporary variable
called "ans".
|