>> 3.14 + 8
ans =
11.1400
>> 4 ^ 3
ans =
64
>> help +
+ Plus.
X + Y adds matrices X and Y. X and Y must have the same
dimensions unless one is a scalar (a 1-by-1 matrix).
A scalar can be added to anything.
C = plus(A,B) is called for the syntax 'A + B' when A or B is an
object.
Reference page for plus
Other functions named plus
>> help help
help Display help text in Command Window.
help, by itself, lists all primary help topics. Each primary topic
corresponds to a folder name on the MATLAB search path.
help NAME displays the help for the functionality specified by NAME,
such as a function, operator symbol, method, class, or toolbox.
NAME can include a partial path.
Some classes require that you specify the package name. Events,
properties, and some methods require that you specify the class
name. Separate the components of the name with periods, using one
of the following forms:
help CLASSNAME.NAME
help PACKAGENAME.CLASSNAME
help PACKAGENAME.CLASSNAME.NAME
If NAME is the name of both a folder and a function, help displays
help for both the folder and the function. The help for a folder
is usually a list of the program files in that folder.
If NAME appears in multiple folders on the MATLAB path, help displays
information about the first instance of NAME found on the path.
NOTE:
In the help, some function names are capitalized to make them
stand out. In practice, type function names in lowercase. For
functions that are shown with mixed case (such as javaObject),
type the mixed case as shown.
EXAMPLES:
help close % help for the CLOSE function
help database/close % help for CLOSE in the Database Toolbox
help database % list of functions in the Database Toolbox
% and help for the DATABASE function
help containers.Map.isKey % help for isKey method
See also doc, docsearch, lookfor, matlabpath, which.
Reference page for help
>> clc
>> 3.14 + 8
ans =
11.1400
>> format compact
>> 3.14 + 8
ans =
11.1400
>> format long
>> 3.14 + 8
ans =
11.140000000000001
>> diary off