Matlab Command Functions
Matlab Command Functions
Plotting Commands
Basic xy Plotting Commands / 8
Plot Enhancement Commands / 8
Specialized Plot Commands / 8
Colors, Symbols and Line Types / 9
Three-Dimensional Plotting Commands / 9
Histogram Functions / 9
MATLAB Commands – 1
Programming
Logical and Relational Operators / 10
Program Flow Control / 10
Logical Functions / 10
M-Files / 11
Timing /11
Mathematical Functions
Exponential and Logarithmic Functions / 12
Trigonometric Functions / 12
Hyperbolic Functions / 12
Complex Functions / 13
Statistical Functions / 13
Random Number Functions / 13
Numeric Functions / 13
String Functions / 13
Numerical Methods
Polynomial and Regression Functions / 14
Interpolation Functions / 14
Numerical Integration Functions / 14
Numerical Differentiation Functions / 14
ODE Solvers / 15
Predefined Input Functions / 15
MATLAB Commands – 2
General Purpose Commands
MATLAB Commands – 3
Special Variables and Constants
ans Most recent answer.
eps Accuracy of floating-point precision.
i,j The imaginary unit - 1.
Inf Infinity.
NaN Undefined numerical result (not a number).
pi The number p .
MATLAB Commands – 4
Input/Output and Formatting Commands
Input/Output Commands
disp Displays contents of an array or string.
fscanf Read formatted data from a file.
format Controls screen-display format.
fprintf Performs formatted writes to screen or file.
input Displays prompts and waits for input.
; Suppresses screen printing.
%s Format as a string.
%d Format as an integer.
%f Format as a floating point value.
%e Format as a floating point value in scientific notation.
%g Format in the most compact form: %f or %e.
\n Insert a new line in the output string.
\t Insert a tab in the output string.
MATLAB Commands – 5
Vector, Matrix and Array Commands
Array Commands
cat Concatenates arrays.
find Finds indices of nonzero elements.
length Computers number of elements.
linspace Creates regularly spaced vector.
logspace Creates logarithmically spaced vector.
max Returns largest element.
min Returns smallest element.
prod Product of each column.
reshape Change size
size Computes array size.
sort Sorts each column.
sum Sums each column.
Special Matrices
eye Creates an identity matrix.
ones Creates an array of ones.
zeros Creates an array of zeros.
Matrix Arithmetic
cross Computes cross products.
dot Computes dot products.
MATLAB Commands – 6
Cell Array Functions
cell Creates cell array.
celldisp Displays cell array.
cellplot Displays graphical representation of cell array.
num2cell Converts numeric array to cell array.
deal Matches input and output lists.
iscell Identifies cell array.
Structure Functions
fieldnames Returns field names in a structure array.
getfield Returns field contents of a structure array.
isfield Identifies a structure array field.
isstruct Identifies a structure array.
rmfield Removes a field from a structure array.
setfield Sets contents of field.
struct Creates structure array.
MATLAB Commands – 7
Plotting Commands
MATLAB Commands – 8
Colors, Symbols and Line Types
Histogram Functions
bar Creates a bar chart.
hist Aggregates the data into equally spaced bins.
histc Aggregates the data into unequally spaced bins.
MATLAB Commands – 9
Programming
Logical Functions
any True if any elements are nonzero.
all True if all elements are nonzero.
find Finds indices of nonzero elements.
finite True if elements are finite.
isnan True if elements are undefined.
isinf True if elements are infinite.
isempty True if matrix is empty.
isreal True if all elements are real.
MATLAB Commands – 10
M-Files
eval Interpret strings containing Matlab expressions.
feval Function evaluation.
function Creates a user-defined function M-file.
global Define global variables.
nargin Number of function input arguments.
nargout Number of function output arguments.
script Script M-files
Timing
cputime CPU time in seconds.
clock Current date and time as date vector.
tic, toc Start, stop a stopwatch timer.
MATLAB Commands – 11
Mathematical Functions
Trigonometric Functions
acos(x) Inverse cosine; arcos x = cos –1 (x).
acot(x) Inverse cotangent; arccot x = cot –1(x).
acsc(x) Inverse cosecant; arcs x = csc –1 (x).
asec(x) Inverse secant; arcsec x = sec –1 (x).
asin(x) Inverse sine; arcsin x = sin –1 (x).
atan(x) Inverse tangent; arctan x = tan –1 (x).
atan2(y,x) Four-quadrant inverse tangent.
cos(x) Cosine; cos(x).
cot(x) Cotangent; cot(x).
csc(x) Cosecant; csc(x).
sec(x) Secant; sec(x).
sin(x) Sine; sin(x).
tan(x) Tangent; tan(x).
Hyperbolic Functions
acosh(x) Inverse hyperbolic cosine; cosh –1 (x).
acoth(x) Inverse hyperbolic cotangent; coth –1 (x).
acsch(x) Inverse hyperbolic cosecant; csch –1 (x).
asech(x) Inverse hyperbolic secant; sech –1 (x).
asinh(x) Inverse hyperbolic sine; sinh –1 (x).
atanh(x) Inverse hyperbolic tangent; tanh –1 (x).
cosh(x) Hyperbolic cosine; cosh(x).
coth(x) Hyperbolic cotangent; cosh(x)/sinh(x).
csch(x) Hyperbolic cosecant; 1/sinh(x).
sech(x) Hyperbolic secant; 1/cosh(x).
sinh(x) Hyperbolic sine; sinh(x).
tanh(x) Hyperbolic tangent; sinh(x)/cosh(x).
MATLAB Commands – 12
Complex Functions
abs(x) Absolute value; |x|.
angle(x) Angle of a complex number x.
conj(x) Complex conjugate of x.
imag(x) Imaginary part of a complex number x.
real(x) Real part of a complex number x.
Statistical Functions
erf(x) Computes the error function erf (x).
mean Calculates the average.
median Calculates the median.
std Calculates the standard deviation.
Numeric Functions
ceil Rounds to the nearest integer toward •.
fix Rounds to the nearest integer toward zero.
floor Rounds to the nearest integer toward - •.
round Rounds towards the nearest integer.
sign Signum function.
String Functions
findstr Finds occurrences of a string.
strcmp Compares strings.
char Creates character string array
MATLAB Commands – 13
Numerical Methods
Interpolation Functions
interp1 Linear and cubic-spline interpolations of a function of one variable.
interp2 Linear interpolation of a function of two variables.
spline Cubic-spline interpolation.
unmkpp Computes the coefficients of cubic-spine polynomials.
MATLAB Commands – 14
ODE Solvers
ode23 Nonstiff, low-order solver.
ode45 Nonstiff, medium-order solver.
ode113 Nonstiff, variable-order solver.
ode23s Stiff, low-order.
ode23t Moderately stiff, trapezoidal rule solver.
ode23b Stiff, low-order solver.
ode15s Stiff, variable-order solver.
odeset Creates integrator options structure for ODE solvers.
MATLAB Commands – 15
Symbolic Math Toolbox
MATLAB Commands – 16
Symbolic Solution of Algebraic and Transcendental Equations
solve Solves symbolic equations.
MATLAB Commands – 17