You are on page 1of 34

xlswrite('D:\manuals group_1.

xlsx',w,'msc03_assign','B3')
[num txt raw]=xlsread('D:\manuals group_1.xlsx','msc03_assign','B3:D6')
num =
1
4
6

2
5
7

3
6
8

txt =
'kojo'

'ama'

'kofi'

'ama'
[ 2]
[ 5]
[ 7]

'kofi'
[ 3]
[ 6]
[ 8]

raw =
'kojo'
[ 1]
[ 4]
[ 6]

diary D:\group1.doc
help save
<strong>save</strong> Save workspace variables to file.
<strong>save</strong>(FILENAME) stores all variables from the current worksp
ace in a
MATLAB formatted binary file (MAT-file) called FILENAME.
<strong>save</strong>(FILENAME,VARIABLES) stores only the specified variable
s.
<strong>save</strong>(FILENAME,'-struct',STRUCTNAME,FIELDNAMES) stores the f
ields of the
specified scalar structure as individual variables in the file. If you
include the optional FIELDNAMES, the <strong>save</strong> function stores o
nly the
specified fields of the structure. You cannot specify VARIABLES and
the '-struct' keyword in the same call to <strong>save</strong>.
<strong>save</strong>(FILENAME, ..., '-append') adds new variables to an exi
sting file.
You can specify '-append' with additional inputs such as VARIABLES,
'-struct', FORMAT, or VERSION.
<strong>save</strong>(FILENAME, ..., FORMAT) saves in the specified format:
'-mat' or
'-ascii'.
You can specify FORMAT with additional inputs such as VARIABLES,
'-struct', '-append', or VERSION.
<strong>save</strong>(FILENAME, ..., VERSION) saves to MAT-files in the spec
ified
version: '-v4', '-v6', '-v7', or '-v7.3'.
You can specify VERSION with additional inputs such as VARIABLES,
'-struct', '-append', or FORMAT.
<strong>save</strong> FILENAME ... is the command form of the syntax, for co
nvenient
saving from the command line. With command syntax, you do not need to

enclose strings in single quotation marks. Separate inputs with spaces


instead of commas. Do not use command syntax if inputs such as
FILENAME are variables.
Inputs:
FILENAME: If you do not specify FILENAME, the <strong>save</strong> function
saves to a
file named matlab.mat. If FILENAME does not include an extension and
the value of format is '-mat' (the default), MATLAB appends .mat. If
filename does not include a full path, MATLAB saves in the current
folder. You must have permission to write to the file.
VARIABLES: Save only selected variables from the workspace.
Use one of the following forms:
V1, V2, ...

'-regexp', EXPRESSIONS

Save the listed variables. Use the '*'


wildcard to match patterns. For example,
save('A*') saves all variables that start
with A.
Save only the variables that match the
specified regular expressions. <strong>save</st

rong> treats
all inputs as regular expressions except
the optional FILENAME and STRUCTNAME. The
FILENAME input must appear first. For
more information on regular expressions,
type "doc regexp" at the command prompt.
'-struct', STRUCTNAME, FIELDNAMES: Save the fields of a scalar
structure as individual variables in the file. FIELDNAMES is optional;
specify to save only selected fields. FIELDNAMES use the same forms as
VARIABLES.
'-append': Add data to an existing file. For MAT-files, '-append' adds
new variables to the file or replaces the saved values of existing
variables with values in the workspace. For ASCII files, '-append'
adds data to the end of the file.
FORMAT: Specify the format of the file, regardless of any specified
extension. Use one of the following combinations:
'-mat'
'-ascii'
'-ascii', '-tabs'
'-ascii', '-double'
'-ascii', '-double', '-tabs'

Binary MAT-file format (default).


8-digit ASCII format.
Tab-delimited 8-digit ASCII format.
16-digit ASCII format.
Tab-delimited 16-digit ASCII format.

For ASCII file formats, the <strong>save</strong> function has the follo
wing
limitations:
* Each variable must be a two-dimensional double or char array.
* MATLAB translates characters to their corresponding internal
ASCII codes. For example, 'abc' appears in an ASCII file as:
9.7000000e+001 9.8000000e+001 9.9000000e+001
* The output includes only the real component of complex numbers.
* If you plan to use the LOAD function to read the file, all
variables must have the same number of columns.
VERSION: Create a MAT-file that you can load into an earlier version of

MATLAB or that supports specific features. The following table shows


the available MAT-file version options and the corresponding supported
features.
| Can Load in |
Option | Versions
| Supported Features
---------+--------------+---------------------------------------------'-v7.3' | 7.3 or later | Version 7.0 features plus support for
|
| data items greater than or equal to 2GB on
|
| 64-bit systems
---------+--------------+---------------------------------------------'-v7'
| 7.0 or later | Version 6 features plus data compression and
|
| Unicode character encoding
---------+--------------+---------------------------------------------'-v6'
| 5 or later | Version 4 features plus N-dimensional arrays,
|
| cell and structure arrays, and variable names
|
| greater than 19 characters
---------+--------------+---------------------------------------------'-v4'
| all
| Two-dimensional double, character, and
|
| sparse arrays
If any data items require features that the specified version does not
support, MATLAB does not save those items and issues a warning. You
cannot specify a version later than your version of MATLAB software.
To view or set the default version for MAT-files, select
File > Preferences > General > MAT-Files.
Examples:
% Save all variables from the workspace to test.mat:
save test.mat
% Save two variables, where FILENAME is a variable:
savefile = 'pqfile.mat';
p = rand(1, 10);
q = ones(10);
save(savefile, 'p', 'q');
% Save the fields of a structure as individual variables:
s1.a = 12.7;
s1.b = {'abc', [4 5; 6 7]};
s1.c = 'Hello!';
save('newstruct.mat', '-struct', 's1');
% Save variables whose names contain digits:
save myfile.mat -regexp \d
See also <a href="matlab:help load">load</a>, <a href="matlab:help matfile">
matfile</a>, <a href="matlab:help whos">whos</a>, <a href="matlab:help regexp">r
egexp</a>, <a href="matlab:help hgsave">hgsave</a>, <a href="matlab:help saveas"
>saveas</a>, <a href="matlab:help workspace">workspace</a>, <a href="matlab:help
clear">clear</a>.
Overloaded methods:
<a href="matlab:help
<a href="matlab:help
<a href="matlab:help
<a href="matlab:help
<a href="matlab:help

COM/save">COM/save</a>
ccsdebug/save">ccsdebug/save</a>
mdevproject/save">mdevproject/save</a>
cgproject/save">cgproject/save</a>
vrworld/save">vrworld/save</a>

Reference page in Help browser


<a href="matlab:doc save">doc save</a>
whos
Name

Size

A
B
C
ama
ans
c
d
e
k
kofi
kojo
m
n
num
p
raw
txt
w
x
y
z

Bytes Class

3x3
3x3
3x6
3x1
3x3
6x1
3x3
1x10
3x5
3x1
3x1
1x1
1x1
3x3
1x1
4x3
1x3
4x3
1x1
1x1
1x100

72
72
144
24
72
48
72
80
120
24
24
60
60
72
60
814
202
814
60
8
800

Attributes

double
double
double
double
double
double
double
double
double
double
double
sym
sym
double
sym
cell
cell
cell
sym
double
double

who
Your variables are:
A
B

C
ama

ans
c

d
e

k
kojo n
kofi m
num

p
raw

txt
w

x
y

clc
cr=[2,3,3];
mks=[50,80,90];
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=[2,3,3];
mks=[50,80,90];
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))
cwa =
76.2500
clc
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=[2,3,3];
mks=[50,80,92];
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))

cwa =
77
cr=input('Please enter 3 credit hours':);
cr=input('Please enter 3 credit hours':);
|
{Error: Unbalanced or unexpected parenthesis or bracket.
}
clc
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=[2,3,3];
mks=[50,80,92];
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))
cwa =
77
cr=input('Please enter 3 credit hours');
Please enter 3 credit hourscr=input('Please enter 3 credit hours');
{Error: The expression to the left of the equals sign is not a valid target for a
n assignment.
}
Please enter 3 credit hoursclc
{Error using <a href="matlab:helpUtils.errorDocCallback('clc')" style="font-weigh
t:bold">clc</a>
Too many output arguments.
}
Please enter 3 credit hours
clc
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=[2,3,3];
mks=[50,80,92];
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))
cwa =
77
cr=input('Please enter 3 credit hours:');
Please enter 3 credit hours:
clc
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=[2,3,3];
mks=[50,80,92];
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))
cwa =

77
cr=input('Please enter 3 credit hours
:');
Please enter 3 credit hours
:[2 3 3]
mks=input('Please enter corresponding marks
:');
Please enter corresponding marks
:[50 80 92]
clc
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=input('Please enter 3 credit hours
:');
Please enter 3 credit hours
:[2 3 3]
mks=input('Please enter corresponding marks
:');
Please enter corresponding marks
:[50 80 92]
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3))
cwa =
77
%try program%
%progrma to calculate cwa given cr & mks%
%----------------------------------cr=input('Please enter 3 credit hours
:');
Please enter 3 credit hours
:[3 3 2]
mks=input('Please enter corresponding marks
:');
Please enter corresponding marks
:[90 90 90]
%---------------------------------cwa=(cr(1)*mks(1)+cr(2)*mks(2)+cr(3)*mks(3))/(cr(1)+cr(2)+cr(3));
%------------------------------------disp('The Cummulative Weighted average(cwa)is
:')
The Cummulative Weighted average(cwa)is
:
disp(cwa)
90
%Example 1 on fprintf:
x=500;
%\n is used to create anew line space
fprintf('The value of x is %f. \n', x)
The value of x is 500.000000.
%The value of x will be on a line below
fprintf('The value of x is \n %f. ', x)
The value of x is
500.000000. %Example 2 on fprintf:
smiles = 77;
fprintf('John smiles %d times a day. ', smiles)
John smiles 77 times a day.
%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: Michael
me =
Michael
smiles = input('How mant times do ou smilea day? ')
How mant times do ou smilea day? 3

smiles =
3
fprintf('I, %s smile %d times a day. ', me,smiles)
I, Michael smile 3 times a day.
%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: Michael
me =
Michael
smiles = input('How mant times do you smile a day? ')
How mant times do you smile a day? 1900
smiles =
1900
fprintf('I, %s smile %d times a day. ', me,smiles)
I, Michael smile 1900 times a day.
%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: 1300
me =
1300
smiles = input('How many times do you smile a day? ')
How many times do you smile a day?
smiles =
[]
fprintf('I, %s smiles %d times a day. ', me,smiles)
I, 1300 smiles times a day.
%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: Michael
me =
Michael
smiles = input('How many times do you smile a day? ')
How many times do you smile a day? 600
smiles =
600
fprintf('I, %s smiles %d times a day. ', me,smiles)
I, Michael smiles 600 times a day.

%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: Michael
me =
Michael
smiles = input('How many times do you smile a day? ')
How many times do you smile a day? 9876
smiles =
9876
fprintf('I, %s smiles %d times a day. ', me,smiles)
I, Michael smiles 9876 times a day.
%Example 2 on fprintf:
me=input('Please Enter your name: ','s')
Please Enter your name: Nana
me =
Nana
smiles = input('How many times do you smile a day? ')
How many times do you smile a day? 87
smiles =
87
fprintf('I, %s smiles %d times a day. ', me,smiles)
I, Nana smiles 87 times a day.
%Example 3 on fprintf:
month = input('Please enter your month of birth (i.e. Jan, etc: ', 's');
Please enter your month of birth (i.e. Jan, etc: October
day = input('Please enter in number your day of birth: ');
Please enter in number your day of birth: 14
fprintf('Your birthday is %s %d !! so many years ago', month, day)
Your birthday is October 14 !! so many years ago
%Comprehensive programme to compute roots of quadratic equation
% START OF CODE
% Quadratic equation roots based
% on the theoretical formula for the roots.
%
%
a .* x.^2 + b .* x + c = 0
%
% Step 1: Start
clear;clc
format compact
disp(' ')

disp(' Quadratic roots finder ')


Quadratic roots finder
disp(' ')
% Step 2: Input data
A = input(' Specify coefficients as follows: [a, b, c] = ');
Specify coefficients as follows: [a, b, c] = [64 225 81]
a = A(1);
b = A(2);
c = A(3);
% Step 3: Evaluation of roots
if a==0 && b==0 && c==0
disp(' Solution is indeterminate ')
elseif a==0 && b==0
disp(' There is no solution ')
elseif a==0
x = -c/b;
x1 = x; x2=x;
disp(' Only one root: equation is linear.')
elseif b.^2 < 4.*a.*c
x1 = (-b + sqrt(b.^2-4.*a.*c) )./(2.*a);
x2 = (-b - sqrt(b.^2-4.*a.*c) )./(2.*a);
disp(' Complex roots')
elseif b.^2 == 4.*a.*c
x = -b./(2.*a);
x1=x;x2=x;
disp(' Equal roots')
else % b.^2 > 4.*a.*c
x1 = (-b + sqrt(b.^2-4.*a.*c) )./(2.*a);
x2 = (-b - sqrt(b.^2-4.*a.*c) )./(2.*a);
disp(' x1,x2 the two distinct roots')
disp([x1 x2])
end
x1,x2 the two distinct roots
-0.4072 -3.1085
cwa=input('Please enter your cwa:....
Please enter your cwa:....
90
cwa =
90
if cwa>=80;
disp('first class')
elseif cwa>=70;
disp('second class Upper')
elseif cwa>=60;
disp('second class lower')
else if cwa>=50
disp('pass')
else
disp('fail')
end

')

cwa=input('Please enter your cwa:....


if cwa>=80
disp('first class')
else if cwa>=70
disp('second class Upper')
else if cwa>=60
disp('second class lower')

')

else if cwa>=50
disp('pass')
else
disp('fail')
end
cwa=input('Please enter your cwa:....
if cwa>=80;
disp('first class')
elseif cwa>=70;
disp('second class Upper')
elseif cwa>=60;
disp('second class lower')
elseif cwa>=50
disp('pass')
else
disp('fail')
end

')

cwa=input('Please enter your cwa:....


if cwa>=80
disp('first class')
elseif cwa>=70
disp('second class Upper')
elseif cwa>=60
disp('second class lower')
elseif cwa>=50
disp('pass')
else
disp('fail')
end

')

cwa=input('Please enter your cwa:....


')
if cwa>=80
disp('first class')
elseif cwa>=70;
disp('second class Upper') else if cwa>=60;
disp('second class Upper') else if cwa>=60;
|
{Error: Illegal use of reserved keyword "else".
}
cwa=input('Please enter your cwa:....
')
Please enter your cwa:....
98
cwa =
98
if cwa>=80
disp('first class')
elseif cwa>=70
disp('second class Upper')
elseif cwa>=60
disp('second class lower')
elseif cwa>=50
disp('pass')
else
disp('fail')
end
first class
plot3(sin(t),cos(t),t)

{Undefined function or variable 't'.}


clc
plot3(sin(t),cos
plot3(sin(t),cos
|
{Error: Expression or statement is incorrect--possibly unbalanced (, {, or [.
}
clc
help plot3
<strong>plot3</strong> Plot lines and points in 3-D space.
<strong>plot3</strong>() is a three-dimensional analogue of PLOT().
<strong>plot3</strong>(x,y,z), where x, y and z are three vectors of the sam
e length,
plots a line in 3-space through the points whose coordinates are the
elements of x, y and z.
<strong>plot3</strong>(X,Y,Z), where X, Y and Z are three matrices of the sa
me size,
plots several lines obtained from the columns of X, Y and Z.
Various line types, plot symbols and colors may be obtained with
<strong>plot3</strong>(X,Y,Z,s) where s is a 1, 2 or 3 character string made
from
the characters listed under the PLOT command.
<strong>plot3</strong>(x1,y1,z1,s1,x2,y2,z2,s2,x3,y3,z3,s3,...) combines the
plots
defined by the (x,y,z,s) fourtuples, where the x's, y's and z's are
vectors or matrices and the s's are strings.
Example: A helix:
t = 0:pi/50:10*pi;
plot3(sin(t),cos(t),t);
<strong>plot3</strong> returns a column vector of handles to lineseries obje
cts, one
handle per line. The X,Y,Z triples, or X,Y,Z,S quads, can be
followed by parameter/value pairs to specify additional
properties of the lines.
See also <a href="matlab:help plot">plot</a>, <a href="matlab:help line">lin
e</a>, <a href="matlab:help axis">axis</a>, <a href="matlab:help view">view</a>,
<a href="matlab:help mesh">mesh</a>, <a href="matlab:help surf">surf</a>.
Overloaded methods:
<a href="matlab:help gpuArray/plot3">gpuArray/plot3</a>
Reference page in Help browser
<a href="matlab:doc plot3">doc plot3</a>
t = 0:pi/50:10*pi;
plot3(sin(t),cos(t),t);
figure(2);plot(t,sin(t));
demos
simulink
[Warning: Using a default value of 0.2 for maximum step size. The simulation ste
p size
will be equal to or less than this value. You can disable this diagnostic by se

tting
'Automatic solver parameter selection' diagnostic to 'none' in the Diagnostics p
age of the
configuration parameters dialog]
[Warning: Using a default value of 0.2 for maximum step size. The simulation ste
p size
will be equal to or less than this value. You can disable this diagnostic by se
tting
'Automatic solver parameter selection' diagnostic to 'none' in the Diagnostics p
age of the
configuration parameters dialog]
[Warning: Using a default value of 0.2 for maximum step size. The simulation ste
p size
will be equal to or less than this value. You can disable this diagnostic by se
tting
'Automatic solver parameter selection' diagnostic to 'none' in the Diagnostics p
age of the
configuration parameters dialog]
clc
B=[3,0,1;7,2,0;0,5,4]
B =
3
0
1
7
2
0
0
5
4
A=[3 0 1
7 2 0
0 5 4]
A =
3
0
1
7
2
0
0
5
4
help det
<strong>det</strong>
Determinant.
<strong>det</strong>(X) is the determinant of the square matrix X.
Use COND instead of <strong>det</strong> to test for matrix singularity.
See also <a href="matlab:help cond">cond</a>.
Overloaded methods:
<a href="matlab:help
<a href="matlab:help
<a href="matlab:help
<a href="matlab:help

sym/det">sym/det</a>
gf/det">gf/det</a>
gpuArray/det">gpuArray/det</a>
laurmat/det">laurmat/det</a>

Reference page in Help browser


<a href="matlab:doc det">doc det</a>
A=[2 -1 3
0 5 4
-7 6 1]
A =
2
-1
0
5
-7
6
det(a)
ans =
64
det(A)
ans =

3
4
1

95
det(B)
ans =
59
det(b)
ans =
225
fliplr(B)
ans =
1
0
4
flipud(B)
ans =
0
7
3
rot90(B)
ans =
1
0
3
rref(A)
ans =
1
0
0
diag(A)
ans =
2
5
1
trace(A)
ans =
8

0
2
5

3
7
0

5
2
0

4
0
1

0
2
7

4
5
0

0
1
0

0
0
1

6
0
0
10
0
30
A(3,[1 3])
ans =
-7
1
B([1:3],3)
ans =
1
0
4
A(:,1)
ans =
2
0
-7
B(3,2)
ans =
5
A(4)
ans =
-1

3
0
4

A.*B
ans =

x=-2:2:15
x =
-2
0
2
4
6
8
10
12
14
y=1:10
y =
1
2
3
4
5
6
7
8
9
10
x(3:end-2)
ans =
2
4
6
8
10
y(1:end/2)
ans =
1
2
3
4
5
linspace(0,2,6)
ans =
0
0.4000
0.8000
1.2000
1.6000
2.0000
x=1:3;
y=4:6;
g=3.*x.^2+2.*y.^2-6.*x.*y
g =
11
2
-9
disp
{Error using <a href="matlab:helpUtils.errorDocCallback('disp')" style="font-weig
ht:bold">disp</a>
Not enough input arguments.}
disp('x-5*x^2+1')
x-5*x^2+1
sqrt(y(1))
ans =
2
f=inline('x^2+y^2','x','y')
f =
Inline function:
f(x,y) = x^2+y^2
x(2)^2-x(3)*y(3)+y(2)^2
ans =
11
me=input('Please Enter your name: ','s')
Please Enter your name: me =
''
me=input('Please Enter your name: ','s')
Please Enter your name: mike
me =
mike
help %s
HELP topics:
<a href="matlab:help matlabhdlcoder\matlabhdlcoder">matlabhdlcoder\matlabhdlcode
r</a> - (No table of contents file)
<a href="matlab:help matlabxl\matlabxl">matlabxl\matlabxl</a>
- MAT
LAB Builder EX
<a href="matlab:help matlab\demos">matlab\demos</a>
- Examples
.
<a href="matlab:help matlab\graph2d">matlab\graph2d</a>
- Two di
mensional graphs.
<a href="matlab:help matlab\graph3d">matlab\graph3d</a>
- Three
dimensional graphs.
<a href="matlab:help matlab\graphics">matlab\graphics</a>
- Handl
e Graphics.
<a href="matlab:help matlab\plottools">matlab\plottools</a>
- Grap
hical plot editing tools

<a href="matlab:help matlab\scribe">matlab\scribe</a>


ion and Plot Editing.
<a href="matlab:help matlab\specgraph">matlab\specgraph</a>
ialized graphs.
<a href="matlab:help matlab\uitools">matlab\uitools</a>
cal user interface components and tools
<a href="matlab:help toolbox\local">toolbox\local</a>
preferences and configuration information.
<a href="matlab:help matlab\optimfun">matlab\optimfun</a>
ization and root finding.
<a href="matlab:help matlab\codetools">matlab\codetools</a>
ands for creating and debugging code
<a href="matlab:help matlab\datafun">matlab\datafun</a>
nalysis and Fourier transforms.
<a href="matlab:help matlab\datamanager">matlab\datamanager</a>
o table of contents file)
<a href="matlab:help matlab\datatypes">matlab\datatypes</a>
types and structures.
<a href="matlab:help matlab\elfun">matlab\elfun</a>
ry math functions.
<a href="matlab:help matlab\elmat">matlab\elmat</a>
ry matrices and matrix manipulation.
<a href="matlab:help matlab\funfun">matlab\funfun</a>
n functions and ODE solvers.
<a href="matlab:help matlab\general">matlab\general</a>
l purpose commands.
<a href="matlab:help matlab\guide">matlab\guide</a>
l user interface design environment
<a href="matlab:help matlab\helptools">matlab\helptools</a>
commands.
<a href="matlab:help matlab\iofun">matlab\iofun</a>
ut and output.
<a href="matlab:help matlab\lang">matlab\lang</a>
ng language constructs.
<a href="matlab:help matlab\matfun">matlab\matfun</a>
functions - numerical linear algebra.
<a href="matlab:help matlab\ops">matlab\ops</a>
and special characters.
<a href="matlab:help matlab\polyfun">matlab\polyfun</a>
olation and polynomials.
<a href="matlab:help matlab\randfun">matlab\randfun</a>
matrices and random streams.
<a href="matlab:help matlab\sparfun">matlab\sparfun</a>
matrices.
<a href="matlab:help matlab\specfun">matlab\specfun</a>
lized math functions.
<a href="matlab:help matlab\strfun">matlab\strfun</a>
er strings.
<a href="matlab:help matlab\timefun">matlab\timefun</a>
nd dates.
<a href="matlab:help matlab\verctrl">matlab\verctrl</a>
n control.
<a href="matlab:help matlab\winfun">matlab\winfun</a>
Operating System Interface Files (COM/DDE)
<a href="matlab:help winfun\NET">winfun\NET</a>
from within MATLAB
<a href="matlab:help simulink\components">simulink\components</a>
imulink components.
<a href="matlab:help simulink\dee">simulink\dee</a>
tial Equation Editor

- Annotat
- Spec
- Graphi
- General
- Optim
- Comm
- Data a
- (N
- Data
- Elementa
- Elementa
- Functio
- Genera
- Graphica
- Help
- File inp
- Programmi
- Matrix
- Operators
- Interp
- Random
- Sparse
- Specia
- Charact
- Time a
- Versio
- Windows
- Using .NET
- S
- Differen

<a href="matlab:help AUTOSAR\AUTOSAR">AUTOSAR\AUTOSAR</a>


- (No t
able of contents file)
<a href="matlab:help rtw\accel">rtw\accel</a>
- (No table o
f contents file)
<a href="matlab:help blocks\library">blocks\library</a>
- (No ta
ble of contents file)
<a href="matlab:help blocks\obsolete">blocks\obsolete</a>
- (No t
able of contents file)
<a href="matlab:help simulink\blocks">simulink\blocks</a>
- Simul
ink block library.
<a href="matlab:help simulink\fixedandfloat">simulink\fixedandfloat</a>
- Fixed-Point Designer utilities.
<a href="matlab:help fixedandfloat\obsolete">fixedandfloat\obsolete</a>
- (No table of contents file)
<a href="matlab:help simulink\simulink">simulink\simulink</a>
- Sim
ulink
<a href="matlab:help simulink\MPlayIO">simulink\MPlayIO</a>
- (No
table of contents file)
<a href="matlab:help simulink\simdemos">simulink\simdemos</a>
- Sim
ulink examples
<a href="matlab:help simdemos\aerospace">simdemos\aerospace</a>
- (N
o table of contents file)
<a href="matlab:help simdemos\automotive">simdemos\automotive</a>
- (
No table of contents file)
<a href="matlab:help simdemos\simfeatures">simdemos\simfeatures</a>
(No table of contents file)
<a href="matlab:help automotive\fuelsys">automotive\fuelsys</a>
- (N
o table of contents file)
<a href="matlab:help simdemos\simgeneral">simdemos\simgeneral</a>
- (
No table of contents file)
<a href="matlab:help simulink\modeladvisor">simulink\modeladvisor</a>
(No table of contents file)
<a href="matlab:help glue\studio">glue\studio</a>
- (No table
of contents file)
<a href="matlab:help simulink\frameedit">simulink\frameedit</a>
- (N
o table of contents file)
<a href="matlab:help stateflow\stateflow">stateflow\stateflow</a>
- S
tateflow
<a href="matlab:help stateflow\sfdemos">stateflow\sfdemos</a>
- Sta
teflow examples and samples.
<a href="matlab:help aero\aero">aero\aero</a>
- Aerospace T
oolbox
<a href="matlab:help aeroblks\aeroblks">aeroblks\aeroblks</a>
- Aer
ospace Blockset
<a href="matlab:help aeroblks\aeroblksutilities">aeroblks\aeroblksutilities</a>
- (No table of contents file)
<a href="matlab:help aeroblks\aerodemos">aeroblks\aerodemos</a>
- Ae
rospace Blockset model examples.
<a href="matlab:help aero\astdemos">aero\astdemos</a>
- (No tab
le of contents file)
<a href="matlab:help matlab\audiovideo">matlab\audiovideo</a>
- Aud
io and Video support.
<a href="matlab:help bioinfo\bioinfo">bioinfo\bioinfo</a>
- Bioin
formatics Toolbox
<a href="matlab:help bioinfo\biolearning">bioinfo\biolearning</a>
- B
ioinformatics Toolbox -- Statistical Learning functions.
<a href="matlab:help bioinfo\microarray">bioinfo\microarray</a>
- Bi
oinformatics Toolbox -- Microarray support functions.
<a href="matlab:help bioinfo\mass_spec">bioinfo\mass_spec</a>
- Bio
informatics Toolbox -- Mass spectrometry data analysis functions.

<a href="matlab:help bioinfo\proteins">bioinfo\proteins</a>


- Bioi
nformatics Toolbox -- Protein analysis tools.
<a href="matlab:help bioinfo\biomatrices">bioinfo\biomatrices</a>
- B
ioinformatics Toolbox -- Sequence similarity scoring matrices.
<a href="matlab:help bioinfo\graphtheory">bioinfo\graphtheory</a>
- B
ioinformatics Toolbox -- Graph Theory functions.
<a href="matlab:help bioinfo\biodemos">bioinfo\biodemos</a>
- Bioi
nformatics Toolbox -- Tutorials, demos and examples.
<a href="matlab:help coder\matlabcoder">coder\matlabcoder</a>
- MAT
LAB Coder
<a href="matlab:help coder\codegendemos">coder\codegendemos</a>
- (N
o table of contents file)
<a href="matlab:help coder\connectivity">coder\connectivity</a>
- (N
o table of contents file)
<a href="matlab:help rtw\rtw">rtw\rtw</a>
- (No table of
contents file)
<a href="matlab:help targets\shared">targets\shared</a>
- (No ta
ble of contents file)
<a href="matlab:help foundation\tfl">foundation\tfl</a>
- (No ta
ble of contents file)
<a href="matlab:help tools\registry">tools\registry</a>
- (No ta
ble of contents file)
<a href="matlab:help comm\comm">comm\comm</a>
- Communicati
ons System Toolbox
<a href="matlab:help commutilities\comminit">commutilities\comminit</a>
- (No table of contents file)
<a href="matlab:help commutilities\commmex">commutilities\commmex</a>
(No table of contents file)
<a href="matlab:help comm\commutilities">comm\commutilities</a>
- (N
o table of contents file)
<a href="matlab:help comm\commdeprecated">comm\commdeprecated</a>
- A
rchived MATLAB Files from Communications System Toolbox.
<a href="matlab:help comm\commdemos">comm\commdemos</a>
- Commun
ications System Toolbox Demos.
<a href="matlab:help comm\examples">comm\examples</a>
- Communi
cations Toolbox Documentation Examples.
<a href="matlab:help shared\comparisons">shared\comparisons</a>
- (N
o table of contents file)
<a href="matlab:help toolbox\compiler">toolbox\compiler</a>
- MATL
AB Compiler
<a href="matlab:help control\control">control\control</a>
- Contr
ol System Toolbox
<a href="matlab:help control\ctrlguis">control\ctrlguis</a>
- Cont
rol System Toolbox -- Visualization and plot manipulation.
<a href="matlab:help control\ctrlobsolete">control\ctrlobsolete</a>
Control System Toolbox -- obsolete commands.
<a href="matlab:help control\ctrlutil">control\ctrlutil</a>
- Cont
rol System Toolbox -- Utilities and MEX files.
<a href="matlab:help control\ctrldemos">control\ctrldemos</a>
- Con
trol System Toolbox -- Demos.
<a href="matlab:help curvefit\curvefit">curvefit\curvefit</a>
- Cur
ve Fitting Toolbox
<a href="matlab:help curvefit\splines">curvefit\splines</a>
- Curv
e Fitting Toolbox -- Spline Functions
<a href="matlab:help curvefit\cftoolgui">curvefit\cftoolgui</a>
- Cu
rve Fitting Toolbox -- Curve Fitting Tool
<a href="matlab:help curvefit\curvefitdemos">curvefit\curvefitdemos</a>
- Curve Fitting Toolbox -- Examples
<a href="matlab:help daq\daq">daq\daq</a>
- Data Acquisit
ion Toolbox

<a href="matlab:help daq\daqguis">daq\daqguis</a>


- Data Acqu
isition Toolbox - Data Acquisition Soft Instruments.
<a href="matlab:help daqblks\daqblks">daqblks\daqblks</a>
- (No t
able of contents file)
<a href="matlab:help daqblks\daqmasks">daqblks\daqmasks</a>
- (No
table of contents file)
<a href="matlab:help daqblks\daqmex">daqblks\daqmex</a>
- (No ta
ble of contents file)
<a href="matlab:help daq\daqdemos">daq\daqdemos</a>
- Data Acq
uisition Toolbox - Data Acquisition Demos.
<a href="matlab:help database\database">database\database</a>
- Dat
abase Toolbox
<a href="matlab:help database\vqb">database\vqb</a>
- Visual Q
uery Builder functions.
<a href="matlab:help database\dbdemos">database\dbdemos</a>
- Data
base Toolbox Demonstration Functions.
<a href="matlab:help datafeed\datafeed">datafeed\datafeed</a>
- Dat
afeed Toolbox
<a href="matlab:help datafeed\dfgui">datafeed\dfgui</a>
- Datafe
ed Toolbox Graphical User Interface
<a href="matlab:help toolbox\distcomp">toolbox\distcomp</a>
- Para
llel Computing Toolbox
<a href="matlab:help distcomp\distcomp">distcomp\distcomp</a>
- (No
table of contents file)
<a href="matlab:help distcomp\user">distcomp\user</a>
- (No tab
le of contents file)
<a href="matlab:help distcomp\mpi">distcomp\mpi</a>
- Parallel
Computing Functions for Message Passing
<a href="matlab:help distcomp\parallel">distcomp\parallel</a>
- Par
allel Algorithms
<a href="matlab:help parallel\util">parallel\util</a>
- (No tab
le of contents file)
<a href="matlab:help distcomp\lang">distcomp\lang</a>
- Paralle
l computing programming language constructs.
<a href="matlab:help distcomp\cluster">distcomp\cluster</a>
- Func
tions and Classes for Parallel Computing with Clusters
<a href="matlab:help distcomp\gpu">distcomp\gpu</a>
- There ar
e several options available for using your computer's graphics
<a href="matlab:help distcomp\pctdemos">distcomp\pctdemos</a>
- (No
table of contents file)
<a href="matlab:help dotnetbuilder\dotnetbuilder">dotnetbuilder\dotnetbuilder</a
>
- MATLAB Builder NE
<a href="matlab:help qualkits\do">qualkits\do</a>
- DO Qualif
ication Kit
<a href="matlab:help dsp\dsp">dsp\dsp</a>
- DSP System To
olbox
<a href="matlab:help dsp\dsputilities">dsp\dsputilities</a>
- (No
table of contents file)
<a href="matlab:help dsputilities\dspinit">dsputilities\dspinit</a>
(No table of contents file)
<a href="matlab:help dsputilities\dspmex">dsputilities\dspmex</a>
- (
No table of contents file)
<a href="matlab:help dsp\dspdemos">dsp\dspdemos</a>
- DSP Syst
em Toolbox demonstrations and examples.
<a href="matlab:help targets\ecoder">targets\ecoder</a>
- (No ta
ble of contents file)
<a href="matlab:help mpt\mpt">mpt\mpt</a>
- Module Packag
ing Feature
<a href="matlab:help mpt\user_specific">mpt\user_specific</a>
- (No
table of contents file)

<a href="matlab:help toolbox\embeddedcoder">toolbox\embeddedcoder</a>


Embedded Coder
<a href="matlab:help ecoder\ecoderdemos">ecoder\ecoderdemos</a>
- (N
o table of contents file)
<a href="matlab:help econ\econ">econ\econ</a>
- Econometric
s Toolbox
<a href="matlab:help econ\econdemos">econ\econdemos</a>
- Econom
etrics Toolbox: Data, Demos, and Examples
<a href="matlab:help edalink\edalink">edalink\edalink</a>
- HDL V
erifier integrates MATLAB and Simulink with hardware design
<a href="matlab:help hdlverifier\hdlverifier">hdlverifier\hdlverifier</a>
- HDL Verifier
<a href="matlab:help discovery\discovery">discovery\discovery</a>
- T
he capability to cosimulate with Synopsys Discovery has been removed.
<a href="matlab:help tlmgenerator\foundation">tlmgenerator\foundation</a>
- (No table of contents file)
<a href="matlab:help foundation\tlmgeneratordemos">foundation\tlmgeneratordemos<
/a> - (No table of contents file)
<a href="matlab:help foundation\hdllink">foundation\hdllink</a>
- (N
o table of contents file)
<a href="matlab:help kernel\embedded">kernel\embedded</a>
- xPC T
arget Embedded Option
<a href="matlab:help eml\eml">eml\eml</a>
- (No table of
contents file)
<a href="matlab:help toolbox\exlink">toolbox\exlink</a>
- Spread
sheet Link EX
<a href="matlab:help dsp\filterdesign">dsp\filterdesign</a>
- (No
table of contents file)
<a href="matlab:help finance\finance">finance\finance</a>
- Finan
cial Toolbox
<a href="matlab:help finance\calendar">finance\calendar</a>
- Fina
ncial Toolbox calendar functions.
<a href="matlab:help finance\finsupport">finance\finsupport</a>
- (N
o table of contents file)
<a href="matlab:help finance\ftseries">finance\ftseries</a>
- Fina
ncial Toolbox Times Series Functions.
<a href="matlab:help finance\findemos">finance\findemos</a>
- Fina
ncial Toolbox Examples
<a href="matlab:help fininst\fininst">fininst\fininst</a>
- Finan
cial Instruments Toolbox
<a href="matlab:help fininst\fininstdemos">fininst\fininstdemos</a>
Financial Instruments Toolbox: Demos
<a href="matlab:help fixedpoint\fixedpointtool">fixedpoint\fixedpointtool</a>
- (No table of contents file)
<a href="matlab:help fixedpoint\fidemos">fixedpoint\fidemos</a>
- (N
o table of contents file)
<a href="matlab:help fixedpoint\fixedpoint">fixedpoint\fixedpoint</a>
Fixed-Point Designer
<a href="matlab:help toolbox\fixpoint">toolbox\fixpoint</a>
- Fixe
d-Point Designer
<a href="matlab:help fixedandfloat\fxpdemos">fixedandfloat\fxpdemos</a>
- Fixed-Point Designer Demos
<a href="matlab:help fuzzy\fuzzy">fuzzy\fuzzy</a>
- Fuzzy Log
ic Toolbox
<a href="matlab:help fuzzy\fuzzyutil">fuzzy\fuzzyutil</a>
- (No t
able of contents file)
<a href="matlab:help fuzzy\fuzdemos">fuzzy\fuzdemos</a>
- Fuzzy
Logic Toolbox Demos.
<a href="matlab:help toolbox\gauges">toolbox\gauges</a>
- Gauges
Blockset

<a href="matlab:help gauges\gaugesdemos">gauges\gaugesdemos</a>


- Ga
uges Blockset Demos.
<a href="matlab:help geoweb\geoweb">geoweb\geoweb</a>
- GeoWeb
Functions and Classes
<a href="matlab:help globaloptim\globaloptim">globaloptim\globaloptim</a>
- Global Optimization Toolbox
<a href="matlab:help globaloptim\globaloptimdemos">globaloptim\globaloptimdemos<
/a> - Global Optimization Toolbox Demos
<a href="matlab:help hdlcoder\hdlcoder">hdlcoder\hdlcoder</a>
- HDL
Coder
<a href="matlab:help hdlcoder\hdlcoderdemos">hdlcoder\hdlcoderdemos</a>
- HDL Coder Examples
<a href="matlab:help hdlcoderdemos\matlabhdlcoderdemos">hdlcoderdemos\matlabhdlc
oderdemos</a> - HDL Coder Demos
<a href="matlab:help hdlcoder\hdlcommon">hdlcoder\hdlcommon</a>
- (N
o table of contents file)
<a href="matlab:help hdlfilter\hdlfilter">hdlfilter\hdlfilter</a>
- F
ilter Design HDL Coder
<a href="matlab:help hdlfilter\hdlfiltdemos">hdlfilter\hdlfiltdemos</a>
- Filter Design HDL Coder Demos
<a href="matlab:help eclipseide\mdlinfo">eclipseide\mdlinfo</a>
- (N
o table of contents file)
<a href="matlab:help eclipseide\tfl">eclipseide\tfl</a>
- (No ta
ble of contents file)
<a href="matlab:help iarew\mdlinfo">iarew\mdlinfo</a>
- (No tab
le of contents file)
<a href="matlab:help ticcs\ccsblks">ticcs\ccsblks</a>
- (No tab
le of contents file)
<a href="matlab:help ticcs\ccslinkblks">ticcs\ccslinkblks</a>
- (No
table of contents file)
<a href="matlab:help ccslinkblks\rtdxsimblks">ccslinkblks\rtdxsimblks</a>
- (No table of contents file)
<a href="matlab:help ticcs\mdlinfo">ticcs\mdlinfo</a>
- (No tab
le of contents file)
<a href="matlab:help ticcs\tfl">ticcs\tfl</a>
- (No table o
f contents file)
<a href="matlab:help ticcs\util">ticcs\util</a>
- (No table
of contents file)
<a href="matlab:help ticcs\envChecker">ticcs\envChecker</a>
- (No
table of contents file)
<a href="matlab:help extensions\wrworkbench">extensions\wrworkbench</a>
- (No table of contents file)
<a href="matlab:help wrworkbench\mdlinfo">wrworkbench\mdlinfo</a>
- (
No table of contents file)
<a href="matlab:help foundation\pjtgenerator">foundation\pjtgenerator</a>
- (No table of contents file)
<a href="matlab:help pjtgenerator\tgtpref2">pjtgenerator\tgtpref2</a>
(No table of contents file)
<a href="matlab:help pjtgenerator\mdlinfo">pjtgenerator\mdlinfo</a>
(No table of contents file)
<a href="matlab:help pjtgenerator\blks">pjtgenerator\blks</a>
- (No
table of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help foundation\util">foundation\util</a>
- (No t
able of contents file)
<a href="matlab:help foundation\errorhandler">foundation\errorhandler</a>
- (No table of contents file)
<a href="matlab:help foundation\xmakefile">foundation\xmakefile</a>
(No table of contents file)

<a href="matlab:help foundation\hookpoints">foundation\hookpoints</a>


(No table of contents file)
<a href="matlab:help idelink\idelinkdemos">idelink\idelinkdemos</a>
(No table of contents file)
<a href="matlab:help eclipseide\eclipseidedemos">eclipseide\eclipseidedemos</a>
- (No table of contents file)
<a href="matlab:help iarew\iarewdemos">iarew\iarewdemos</a>
- (No
table of contents file)
<a href="matlab:help ticcs\ccsdemos">ticcs\ccsdemos</a>
- (No ta
ble of contents file)
<a href="matlab:help ccsdemos\util">ccsdemos\util</a>
- (No tab
le of contents file)
<a href="matlab:help ident\ident">ident\ident</a>
- System Id
entification Toolbox
<a href="matlab:help ident\nlident">ident\nlident</a>
- Nonline
ar System Identification features. Type "help ident" for more info.
<a href="matlab:help ident\idobsolete">ident\idobsolete</a>
- (No
table of contents file)
<a href="matlab:help ident\idguis">ident\idguis</a>
- (No tabl
e of contents file)
<a href="matlab:help ident\idutils">ident\idutils</a>
- (No tab
le of contents file)
<a href="matlab:help ident\iddemos">ident\iddemos</a>
- (No tab
le of contents file)
<a href="matlab:help iddemos\examples">iddemos\examples</a>
- (No
table of contents file)
<a href="matlab:help qualkits\iec">qualkits\iec</a>
- IEC Cert
ification Kit
<a href="matlab:help images\colorspaces">images\colorspaces</a>
- Im
age Processing Toolbox --- colorspaces
<a href="matlab:help images\images">images\images</a>
- Image P
rocessing Toolbox
<a href="matlab:help images\imuitools">images\imuitools</a>
- Imag
e Processing Toolbox --- imuitools
<a href="matlab:help images\iptformats">images\iptformats</a>
- Ima
ge Processing Toolbox --- File Formats
<a href="matlab:help images\iptutils">images\iptutils</a>
- Image
Processing Toolbox --- utilities
<a href="matlab:help matlab\imagesci">matlab\imagesci</a>
- Image
and scientific data input/output.
<a href="matlab:help images\imdemos">images\imdemos</a>
- Image
Processing Toolbox --- demos and sample images
<a href="matlab:help imaq\imaq">imaq\imaq</a>
- Image Acqui
sition Toolbox
<a href="matlab:help imaqblks\imaqblks">imaqblks\imaqblks</a>
- (No
table of contents file)
<a href="matlab:help imaqblks\imaqmasks">imaqblks\imaqmasks</a>
- (N
o table of contents file)
<a href="matlab:help imaqblks\imaqmex">imaqblks\imaqmex</a>
- (No
table of contents file)
<a href="matlab:help imaq\imaqdemos">imaq\imaqdemos</a>
- Image
Acquisition Toolbox.
<a href="matlab:help incisive\incisive">incisive\incisive</a>
- HDL
Verifier for use with Cadence Incisive
<a href="matlab:help incisive\incisivedemos">incisive\incisivedemos</a>
- (No table of contents file)
<a href="matlab:help instrument\instrument">instrument\instrument</a>
Instrument Control Toolbox
<a href="matlab:help instrumentblks\instrumentblks">instrumentblks\instrumentblk
s</a> - (No table of contents file)

<a href="matlab:help instrumentblks\instrumentmex">instrumentblks\instrumentmex<


/a> - (No table of contents file)
<a href="matlab:help instrumentblks\instrumentmasks">instrumentblks\instrumentma
sks</a> - (No table of contents file)
<a href="matlab:help instrument\instrumentdemos">instrument\instrumentdemos</a>
- (No table of contents file)
<a href="matlab:help shared\instrument">shared\instrument</a>
- (No
table of contents file)
<a href="matlab:help javabuilder\javabuilder">javabuilder\javabuilder</a>
- MATLAB Builder JA
<a href="matlab:help shared\m3i">shared\m3i</a>
- (No table
of contents file)
<a href="matlab:help map\map">map\map</a>
- Mapping Toolb
ox
<a href="matlab:help map\mapgeodesy">map\mapgeodesy</a>
- (No ta
ble of contents file)
<a href="matlab:help map\mapdisp">map\mapdisp</a>
- (No table
of contents file)
<a href="matlab:help map\mapformats">map\mapformats</a>
- (No ta
ble of contents file)
<a href="matlab:help map\mapproj">map\mapproj</a>
- (No table
of contents file)
<a href="matlab:help map\mapdata">map\mapdata</a>
- Mapping T
oolbox Sample Data Sets
<a href="matlab:help map\mapdemos">map\mapdemos</a>
- Mapping
Toolbox Examples
<a href="matlab:help mbc\mbc">mbc\mbc</a>
- Model-Based C
alibration Toolbox
<a href="matlab:help mbc\mbcdata">mbc\mbcdata</a>
- Model-Bas
ed Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcdemos">mbc\mbcdemos</a>
- (No tabl
e of contents file)
<a href="matlab:help mbc\mbcdesign">mbc\mbcdesign</a>
- Model-B
ased Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcexpr">mbc\mbcexpr</a>
- Model-Bas
ed Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcguitools">mbc\mbcguitools</a>
- Model
-Based Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbclayouts">mbc\mbclayouts</a>
- ModelBased Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcmodels">mbc\mbcmodels</a>
- Model-B
ased Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcsimulink">mbc\mbcsimulink</a>
- Model
-Based Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbctools">mbc\mbctools</a>
- Model-Ba
sed Calibration Toolbox private utilities.
<a href="matlab:help mbc\mbcview">mbc\mbcview</a>
- Model-Bas
ed Calibration Toolbox private utilities.
<a href="matlab:help modelsim\modelsim">modelsim\modelsim</a>
- HDL
Verifier for use with Mentor Graphics ModelSim
<a href="matlab:help modelsim\modelsimdemos">modelsim\modelsimdemos</a>
- (No table of contents file)
<a href="matlab:help mpc\mpc">mpc\mpc</a>
- Model Predict
ive Control Toolbox
<a href="matlab:help mpc\mpcdemos">mpc\mpcdemos</a>
- Model Pr
edictive Control Toolbox -- Demos.
<a href="matlab:help mpc\mpcguis">mpc\mpcguis</a>
- (No table
of contents file)
<a href="matlab:help mpc\mpcobsolete">mpc\mpcobsolete</a>
- Conte
nts of the previous (obsolete) version of MPC Toolbox

<a href="matlab:help mpc\mpcutils">mpc\mpcutils</a>


- (No tabl
e of contents file)
<a href="matlab:help toolbox\nnet">toolbox\nnet</a>
- Neural N
etwork Toolbox
<a href="matlab:help nnet\nncontrol">nnet\nncontrol</a>
- Neural
Network Toolbox Control System Functions.
<a href="matlab:help nnet\nndemos">nnet\nndemos</a>
- Neural N
etwork Demonstrations and Applications
<a href="matlab:help nndemos\nndatasets">nndemos\nndatasets</a>
- Ne
ural Network Datasets
<a href="matlab:help nnet\nnadapt">nnet\nnadapt</a>
- Neural N
etwork Toolbox Adapt Functions.
<a href="matlab:help nnet\nndatafun">nnet\nndatafun</a>
- Neural
Network Toolbox Data Functions.
<a href="matlab:help nnet\nnderivative">nnet\nnderivative</a>
- Neu
ral Network Toolbox Calculation Functions.
<a href="matlab:help nnet\nndistance">nnet\nndistance</a>
- Neura
l Network Toolbox Distance Functions.
<a href="matlab:help nnet\nndivision">nnet\nndivision</a>
- Neura
l Network Toolbox Division Functions.
<a href="matlab:help nnet\nninitlayer">nnet\nninitlayer</a>
- Neur
al Network Toolbox Layer Initialization Functions.
<a href="matlab:help nnet\nninitnetwork">nnet\nninitnetwork</a>
- Ne
ural Network Toolbox Network Initialization Functions.
<a href="matlab:help nnet\nninitweight">nnet\nninitweight</a>
- Neu
ral Network Toolbox Weight Initialization Functions.
<a href="matlab:help nnet\nnlearn">nnet\nnlearn</a>
- Neural N
etwork Toolbox Learning Functions.
<a href="matlab:help nnet\nnnetfun">nnet\nnnetfun</a>
- Neural
Network Toolbox Network Functions.
<a href="matlab:help nnet\nnnetinput">nnet\nnnetinput</a>
- Neura
l Network Toolbox Net Input Functions.
<a href="matlab:help nnet\nnnetwork">nnet\nnnetwork</a>
- Neural
Network Toolbox Network Creation Functions.
<a href="matlab:help nnet\nnperformance">nnet\nnperformance</a>
- Ne
ural Network Toolbox Performance Functions.
<a href="matlab:help nnet\nnplot">nnet\nnplot</a>
- Neural Ne
twork Toolbox Plot Functions.
<a href="matlab:help nnet\nnprocess">nnet\nnprocess</a>
- Neural
Network Toolbox Processing Functions.
<a href="matlab:help nnet\nnsearch">nnet\nnsearch</a>
- Neural
Network Toolbox Line Search Functions.
<a href="matlab:help nnet\nntopology">nnet\nntopology</a>
- Neura
l Network Toolbox Topology Functions.
<a href="matlab:help nnet\nntrain">nnet\nntrain</a>
- Neural N
etwork Toolbox Training Functions.
<a href="matlab:help nnet\nntransfer">nnet\nntransfer</a>
- Neura
l Network Toolbox Transfer Functions.
<a href="matlab:help nnet\nnweight">nnet\nnweight</a>
- Neural
Network Toolbox Weight Functions.
<a href="matlab:help nnet\nnguis">nnet\nnguis</a>
- Neural Ne
twork Toolbox GUI Functions.
<a href="matlab:help nnet\nnobsolete">nnet\nnobsolete</a>
- Neura
l Network Toolbox Obsolete Functions
<a href="matlab:help nnet\nnutils">nnet\nnutils</a>
- Neural N
etwork Toolbox Utility Functions
<a href="matlab:help opc\opc">opc\opc</a>
- OPC Toolbox
<a href="matlab:help opc\opcgui">opc\opcgui</a>
- (No table
of contents file)
<a href="matlab:help opc\opcdemos">opc\opcdemos</a>
- OPC Tool

box - OPC Examples


<a href="matlab:help opcdemos\opcblksdemos">opcdemos\opcblksdemos</a>
OPC Toolbox Block Library Examples.
<a href="matlab:help opcblks\opcblks">opcblks\opcblks</a>
- OPC T
oolbox Block Library Support Functions.
<a href="matlab:help optim\optim">optim\optim</a>
- Optimizat
ion Toolbox
<a href="matlab:help optim\optimdemos">optim\optimdemos</a>
- Demo
nstrations.
<a href="matlab:help toolbox\pde">toolbox\pde</a>
- Partial D
ifferential Equation Toolbox
<a href="matlab:help pde\pdedemos">pde\pdedemos</a>
- Partial
Differential Equation Toolbox Examples
<a href="matlab:help phased\phased">phased\phased</a>
- Phased
Array System Toolbox
<a href="matlab:help phased\phasedapps">phased\phasedapps</a>
- (No
table of contents file)
<a href="matlab:help phased\phaseddemos">phased\phaseddemos</a>
- (N
o table of contents file)
<a href="matlab:help mli\m">mli\m</a>
- (No table of co
ntents file)
<a href="matlab:help mli\m">mli\m</a>
- (No table of co
ntents file)
<a href="matlab:help mli\m">mli\m</a>
- (No table of co
ntents file)
<a href="matlab:help drive\drive">drive\drive</a>
- (No table
of contents file)
<a href="matlab:help drive\drivedemos">drive\drivedemos</a>
- SimD
riveline 1 Demos.
<a href="matlab:help elec\elec">elec\elec</a>
- SimElectron
ics
<a href="matlab:help elec\elecdemos">elec\elecdemos</a>
- (No ta
ble of contents file)
<a href="matlab:help mech\mech">mech\mech</a>
- SimMechanic
s
<a href="matlab:help mech\importer">mech\importer</a>
- (No tab
le of contents file)
<a href="matlab:help mech\mechdemos">mech\mechdemos</a>
- SimMec
hanics Demos.
<a href="matlab:help network_engine\network_engine">network_engine\network_engin
e</a> - (No table of contents file)
<a href="matlab:help ne_sli\ne_sli">ne_sli\ne_sli</a>
- (No tab
le of contents file)
<a href="matlab:help pm_sli\pm_sli">pm_sli\pm_sli</a>
- (No tab
le of contents file)
<a href="matlab:help powersys\powersys">powersys\powersys</a>
- Sim
PowerSystems
<a href="matlab:help DR\DRdemo">DR\DRdemo</a>
- (No table o
f contents file)
<a href="matlab:help drives\drivesdemo">drives\drivesdemo</a>
- (No
table of contents file)
<a href="matlab:help powersys\powerdemo">powersys\powerdemo</a>
- Si
mPowerSystems Demos
<a href="matlab:help powerdemo\machines">powerdemo\machines</a>
- (N
o table of contents file)
<a href="matlab:help powerdemo\power_electronics">powerdemo\power_electronics</a
>
- (No table of contents file)
<a href="matlab:help powerdemo\simple">powerdemo\simple</a>
- (No
table of contents file)
<a href="matlab:help sdl\sdl">sdl\sdl</a>
- SimDriveline

<a href="matlab:help sdl\classic">sdl\classic</a>


- (No table
of contents file)
<a href="matlab:help sh\sh">sh\sh</a>
- SimHydraulics
<a href="matlab:help sh\shdemos">sh\shdemos</a>
- (No table
of contents file)
<a href="matlab:help simrf\m">simrf\m</a>
- (No table of
contents file)
<a href="matlab:help simscape\simscapedemos">simscape\simscapedemos</a>
- (No table of contents file)
<a href="matlab:help foundation\simscape">foundation\simscape</a>
- S
imscape
<a href="matlab:help library\m">library\m</a>
- (No table o
f contents file)
<a href="matlab:help simscape\m">simscape\m</a>
- (No table
of contents file)
<a href="matlab:help smdemos\cart_double_pendulum">smdemos\cart_double_pendulum<
/a> - (No table of contents file)
<a href="matlab:help smdemos\stewart_platform">smdemos\stewart_platform</a>
- (No table of contents file)
<a href="matlab:help smdemos\double_crank_aiming">smdemos\double_crank_aiming</a
>
- (No table of contents file)
<a href="matlab:help smdemos\double_wishbone_suspension">smdemos\double_wishbone
_suspension</a> - (No table of contents file)
<a href="matlab:help import\m">import\m</a>
- (No table of
contents file)
<a href="matlab:help sli\m">sli\m</a>
- (No table of co
ntents file)
<a href="matlab:help sm\m">sm\m</a>
- (No table of con
tents file)
<a href="matlab:help plccoder\plccoder">plccoder\plccoder</a>
- Sim
ulink PLC Coder
<a href="matlab:help plugins\omron">plugins\omron</a>
- (No tab
le of contents file)
<a href="matlab:help plccoder\plccoderdemos">plccoder\plccoderdemos</a>
- (No table of contents file)
<a href="matlab:help qualkits\common">qualkits\common</a>
- (No t
able of contents file)
<a href="matlab:help realtime\realtime">realtime\realtime</a>
- Run
Simulink model on target hardware
<a href="matlab:help slvnv\reqmgt">slvnv\reqmgt</a>
- Requirem
ents Management Interface.
<a href="matlab:help reqmgt\RTExplorer">reqmgt\RTExplorer</a>
- Sub
directory "RTExplorer" - RMI data serialization infrastructure
<a href="matlab:help slvnv\slvnv">slvnv\slvnv</a>
- Simulink
Verification and Validation
<a href="matlab:help rf\rf">rf\rf</a>
- RF Toolbox
<a href="matlab:help rf\rftool">rf\rftool</a>
- RF Tool Gra
phical User Interface
<a href="matlab:help rfblks\rfblks">rfblks\rfblks</a>
- (No tab
le of contents file)
<a href="matlab:help rfblks\rfblksmasks">rfblks\rfblksmasks</a>
- (N
o table of contents file)
<a href="matlab:help rfblks\rfblksdemos">rfblks\rfblksdemos</a>
- (N
o table of contents file)
<a href="matlab:help rf\rfdemos">rf\rfdemos</a>
- RF Toolbox
Demos
<a href="matlab:help robust\robust">robust\robust</a>
- Robust
Control Toolbox
<a href="matlab:help robust\rctlmi">robust\rctlmi</a>
- Robust
Control Toolbox - LMI Solvers.

<a href="matlab:help robust\rctutil">robust\rctutil</a>


- (No ta
ble of contents file)
<a href="matlab:help robust\rctdemos">robust\rctdemos</a>
- Robus
t Control Toolbox -- Demos.
<a href="matlab:help rctobsolete\lmi">rctobsolete\lmi</a>
- (No t
able of contents file)
<a href="matlab:help mutools\commands">mutools\commands</a>
- (No
table of contents file)
<a href="matlab:help mutools\subs">mutools\subs</a>
- Utilitie
s for obsolete MUTOOLS commands.
<a href="matlab:help rptgen\rptgen">rptgen\rptgen</a>
- MATLAB
Report Generator
<a href="matlab:help rptgenext\rptgenext">rptgenext\rptgenext</a>
- S
imulink Report Generator
<a href="matlab:help rptgenextdemos\flutter_suppression">rptgenextdemos\flutter_
suppression</a> - (No table of contents file)
<a href="matlab:help rptgenextdemos\sdd">rptgenextdemos\sdd</a>
- (N
o table of contents file)
<a href="matlab:help rptgenext\slxmlcomp">rptgenext\slxmlcomp</a>
- (
No table of contents file)
<a href="matlab:help rptgenextdemos\slxmlcomp">rptgenextdemos\slxmlcomp</a>
- (No table of contents file)
<a href="matlab:help rptgen\rptgendemos">rptgen\rptgendemos</a>
- (N
o table of contents file)
<a href="matlab:help xmlcomp\demos">xmlcomp\demos</a>
- (No tab
le of contents file)
<a href="matlab:help asap2\asap2">asap2\asap2</a>
- (No table
of contents file)
<a href="matlab:help asap2\user">asap2\user</a>
- (No table
of contents file)
<a href="matlab:help can\blocks">can\blocks</a>
- (No table
of contents file)
<a href="matlab:help common\tgtcommon">common\tgtcommon</a>
- (No
table of contents file)
<a href="matlab:help targets\pil">targets\pil</a>
- (No table
of contents file)
<a href="matlab:help toolbox\simulinkcoder">toolbox\simulinkcoder</a>
Simulink Coder
<a href="matlab:help rtwin\rtwin">rtwin\rtwin</a>
- Real-Time
Windows Target
<a href="matlab:help rtwin\rtwindemos">rtwin\rtwindemos</a>
- (No
table of contents file)
<a href="matlab:help rtw\rtwdemos">rtw\rtwdemos</a>
- Simulink
Coder Demos
<a href="matlab:help rtwdemos\rsimdemos">rtwdemos\rsimdemos</a>
- (N
o table of contents file)
<a href="matlab:help blocks\sb2sl">blocks\sb2sl</a>
- (No tabl
e of contents file)
<a href="matlab:help shared\advisor">shared\advisor</a>
- (No ta
ble of contents file)
<a href="matlab:help shared\can">shared\can</a>
- (No table
of contents file)
<a href="matlab:help can\canblks">can\canblks</a>
- (No table
of contents file)
<a href="matlab:help can\canmasks">can\canmasks</a>
- (No tabl
e of contents file)
<a href="matlab:help can\canmex">can\canmex</a>
- (No table
of contents file)
<a href="matlab:help shared\configset">shared\configset</a>
- (No
table of contents file)

<a href="matlab:help controllib\engine">controllib\engine</a>


- Con
trol Library - Engine.
<a href="matlab:help engine\numerics">engine\numerics</a>
- (No t
able of contents file)
<a href="matlab:help engine\options">engine\options</a>
- (No ta
ble of contents file)
<a href="matlab:help controllib\general">controllib\general</a>
- Co
ntrol System Toolbox -- General Utilities.
<a href="matlab:help controllib\graphics">controllib\graphics</a>
- C
ontrol Library - Graphics.
<a href="matlab:help graphics\utils">graphics\utils</a>
- (No ta
ble of contents file)
<a href="matlab:help graphics\plotoptions">graphics\plotoptions</a>
(No table of contents file)
<a href="matlab:help controllib\requirements">controllib\requirements</a>
- Control Library - Design Requirements.
<a href="matlab:help shared\dastudio">shared\dastudio</a>
- (No t
able of contents file)
<a href="matlab:help dastudio\depviewer">dastudio\depviewer</a>
- (N
o table of contents file)
<a href="matlab:help dspblks\dspblks">dspblks\dspblks</a>
- (No t
able of contents file)
<a href="matlab:help simulink\utilities">simulink\utilities</a>
- (N
o table of contents file)
<a href="matlab:help utilities\init">utilities\init</a>
- (No ta
ble of contents file)
<a href="matlab:help eda\board">eda\board</a>
- (No table o
f contents file)
<a href="matlab:help eda\fil">eda\fil</a>
- FPGA-in-the-L
oop verifies FPGA designs in Simulink and MATLAB with an
<a href="matlab:help fil\filmapi">fil\filmapi</a>
- (No table
of contents file)
<a href="matlab:help fil\fildemos">fil\fildemos</a>
- (No tabl
e of contents file)
<a href="matlab:help eda\fpgaautomation">eda\fpgaautomation</a>
- HD
L Verifier for Xilinx FPGA design automation
<a href="matlab:help shared\filterdesignlib">shared\filterdesignlib</a>
- (No table of contents file)
<a href="matlab:help shared\hdlshared">shared\hdlshared</a>
- HDL
Library
<a href="matlab:help hdlshared\hdlshared_gui">hdlshared\hdlshared_gui</a>
- (No table of contents file)
<a href="matlab:help shared\imageslib">shared\imageslib</a>
- Imag
e Processing Toolbox Library
<a href="matlab:help shared\imaqlib">shared\imaqlib</a>
- Image
Acquisition Toolbox Library
<a href="matlab:help shared\mapgeodesy">shared\mapgeodesy</a>
- Geo
metric Geodesy Functions
<a href="matlab:help shared\maputils">shared\maputils</a>
- Map U
tility Functions
<a href="matlab:help shared\optimlib">shared\optimlib</a>
- Optim
ization Toolbox Library
<a href="matlab:help shared\rptgen">shared\rptgen</a>
- (No tab
le of contents file)
<a href="matlab:help shared\sigbldr">shared\sigbldr</a>
- (No ta
ble of contents file)
<a href="matlab:help shared\siglib">shared\siglib</a>
- (No tab
le of contents file)
<a href="matlab:help shared\slcontrollib">shared\slcontrollib</a>
- S
imulink Control Design Library

<a href="matlab:help shared\sldv">shared\sldv</a>


- sldvisact
ive
- Check if Simulink Design Verifier software is analyzing model
<a href="matlab:help shared\slvnv">shared\slvnv</a>
- (No tabl
e of contents file)
<a href="matlab:help slvnv\simcoverage">slvnv\simcoverage</a>
- Sim
ulink Model Coverage Tool
<a href="matlab:help shared\spcuilib">shared\spcuilib</a>
- (No t
able of contents file)
<a href="matlab:help shared\statslib">shared\statslib</a>
- Stati
stics Toolbox Library
<a href="matlab:help testmeaslib\simulink">testmeaslib\simulink</a>
(No table of contents file)
<a href="matlab:help shared\xcp">shared\xcp</a>
- XCP functi
onality is provided as part of Vehicle Network Toolbox.
<a href="matlab:help xcp\xcpblks">xcp\xcpblks</a>
- (No table
of contents file)
<a href="matlab:help xcp\xcpmasks">xcp\xcpmasks</a>
- (No tabl
e of contents file)
<a href="matlab:help xcp\xcpmex">xcp\xcpmex</a>
- (No table
of contents file)
<a href="matlab:help signal\signal">signal\signal</a>
- Signal
Processing Toolbox
<a href="matlab:help signal\sigtools">signal\sigtools</a>
- (No t
able of contents file)
<a href="matlab:help signal\sptoolgui">signal\sptoolgui</a>
- (No
table of contents file)
<a href="matlab:help signal\sigdemos">signal\sigdemos</a>
- (No t
able of contents file)
<a href="matlab:help simbio\simbio">simbio\simbio</a>
- SimBiol
ogy
<a href="matlab:help simbio\simbiodemos">simbio\simbiodemos</a>
- Si
mBiology Demos
<a href="matlab:help simevents\simevents">simevents\simevents</a>
- S
imEvents
<a href="matlab:help des\desblks">des\desblks</a>
- (No table
of contents file)
<a href="matlab:help des\desmasks">des\desmasks</a>
- (No tabl
e of contents file)
<a href="matlab:help des\desmex">des\desmex</a>
- (No table
of contents file)
<a href="matlab:help simevents\examples">simevents\examples</a>
- Si
mEvents Demos.
<a href="matlab:help simrf\simrf">simrf\simrf</a>
- SimRF
<a href="matlab:help simrf\simrfV2">simrf\simrfV2</a>
- (No tab
le of contents file)
<a href="matlab:help simrf\simrfV2masks">simrf\simrfV2masks</a>
- (N
o table of contents file)
<a href="matlab:help simrf\examples">simrf\examples</a>
- (No ta
ble of contents file)
<a href="matlab:help simrf\simrfV2demos">simrf\simrfV2demos</a>
- Si
mRF 4.0 Demos
<a href="matlab:help sl3d\sl3d">sl3d\sl3d</a>
- Simulink 3D
Animation
<a href="matlab:help sl3d\sl3ddemos">sl3d\sl3ddemos</a>
- Simuli
nk 3D Animation examples.
<a href="matlab:help slci\slci">slci\slci</a>
- Simulink Co
de Inspector
<a href="matlab:help slci\slcidemos">slci\slcidemos</a>
- (No ta
ble of contents file)
<a href="matlab:help slcontrol\slcontrol">slcontrol\slcontrol</a>
- S

imulink Control Design


<a href="matlab:help slcontrol\slctrlguis">slcontrol\slctrlguis</a>
(No table of contents file)
<a href="matlab:help slcontrol\slctrlutil">slcontrol\slctrlutil</a>
(No table of contents file)
<a href="matlab:help slcontrol\slctrlobsolete">slcontrol\slctrlobsolete</a>
- (No table of contents file)
<a href="matlab:help slcontrol\slctrldemos">slcontrol\slctrldemos</a>
(No table of contents file)
<a href="matlab:help sldo\sldo">sldo\sldo</a>
- Simulink De
sign Optimization
<a href="matlab:help sldo\sldoguis">sldo\sldoguis</a>
- (No tab
le of contents file)
<a href="matlab:help sloptim\sloptim">sloptim\sloptim</a>
- (No t
able of contents file)
<a href="matlab:help sloptim\sloptguis">sloptim\sloptguis</a>
- (No
table of contents file)
<a href="matlab:help sloptim\sloptobsolete">sloptim\sloptobsolete</a>
(No table of contents file)
<a href="matlab:help slestim\slestguis">slestim\slestguis</a>
- (No
table of contents file)
<a href="matlab:help slestim\slestim">slestim\slestim</a>
- (No t
able of contents file)
<a href="matlab:help slestim\slestmex">slestim\slestmex</a>
- Simu
link Design Optimization Estimation S-Function MEX-files.
<a href="matlab:help slestim\slestutil">slestim\slestutil</a>
- (No
table of contents file)
<a href="matlab:help sldo\sldodemos">sldo\sldodemos</a>
- Simuli
nk Design Optimization Demos.
<a href="matlab:help sldodemos\optim">sldodemos\optim</a>
- (No t
able of contents file)
<a href="matlab:help sldodemos\estim">sldodemos\estim</a>
- (No t
able of contents file)
<a href="matlab:help sldo\examples">sldo\examples</a>
- (No tab
le of contents file)
<a href="matlab:help sldv\sldv">sldv\sldv</a>
- Simulink De
sign Verifier
<a href="matlab:help sldv\sldvdemos">sldv\sldvdemos</a>
- (No ta
ble of contents file)
<a href="matlab:help slvnv\slvnvdemos">slvnv\slvnvdemos</a>
- (No
table of contents file)
<a href="matlab:help slvnv\rmidemos">slvnv\rmidemos</a>
- (No ta
ble of contents file)
<a href="matlab:help slvnv\simcovdemos">slvnv\simcovdemos</a>
- (No
table of contents file)
<a href="matlab:help iodata\iomap">iodata\iomap</a>
- (No tabl
e of contents file)
<a href="matlab:help simulink\upgradeadvisor">simulink\upgradeadvisor</a>
- (No table of contents file)
<a href="matlab:help stats\stats">stats\stats</a>
- Statistic
s Toolbox
<a href="matlab:help stats\classreg">stats\classreg</a>
- (No ta
ble of contents file)
<a href="matlab:help stats\statsdemos">stats\statsdemos</a>
- Stat
istics Toolbox --- Demos
<a href="matlab:help stm\stm">stm\stm</a>
- Simulation an
d Test Manager
<a href="matlab:help symbolic\symbolic">symbolic\symbolic</a>
- Sym
bolic Math Toolbox
<a href="matlab:help symbolic\symbolicdemos">symbolic\symbolicdemos</a>

- (No table of contents file)


<a href="matlab:help systemtest\systemtest">systemtest\systemtest</a>
SystemTest
<a href="matlab:help systemtest\systemtestdemos">systemtest\systemtestdemos</a>
- SystemTest demonstrations and examples.
<a href="matlab:help intelhost\tfl">intelhost\tfl</a>
- (No tab
le of contents file)
<a href="matlab:help foundation\utils">foundation\utils</a>
- (No
table of contents file)
<a href="matlab:help utils\resource_config">utils\resource_config</a>
(No table of contents file)
<a href="matlab:help blks\mex">blks\mex</a>
- (No table of
contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help ti\mdlinfo">ti\mdlinfo</a>
- (No table
of contents file)
<a href="matlab:help ti\utils">ti\utils</a>
- (No table of
contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help etargets\etargets">etargets\etargets</a>
- (No
table of contents file)
<a href="matlab:help etargets\demoutils">etargets\demoutils</a>
- (N
o table of contents file)
<a href="matlab:help target\targetdemos">target\targetdemos</a>
- (N
o table of contents file)
<a href="matlab:help processor\tic2000">processor\tic2000</a>
- (No
table of contents file)
<a href="matlab:help tic2000\utils">tic2000\utils</a>
- (No tab
le of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help tic2000\tic2000demos">tic2000\tic2000demos</a>
(No table of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help tic5000\tic5000demos">tic5000\tic5000demos</a>
(No table of contents file)
<a href="matlab:help processor\tic6000">processor\tic6000</a>
- (No
table of contents file)
<a href="matlab:help tic6000\tfl">tic6000\tfl</a>
- (No table
of contents file)
<a href="matlab:help tic6000\utils">tic6000\utils</a>
- (No tab
le of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- TI C6000 (
tm) Blocks
<a href="matlab:help tic6000\tic6000demos">tic6000\tic6000demos</a>
(No table of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help blks\mex">blks\mex</a>
- (No table of
contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help blks\masks">blks\masks</a>
- (No table
of contents file)
<a href="matlab:help matlab\timeseries">matlab\timeseries</a>
- Tim
e series data visualization and exploration.
<a href="matlab:help matlab\hds">matlab\hds</a>
- (No table

of contents file)
<a href="matlab:help trading\trading">trading\trading</a>
- Tradi
ng Toolbox
<a href="matlab:help vision\vision">vision\vision</a>
- Compute
r Vision System Toolbox
<a href="matlab:help vision\visionutilities">vision\visionutilities</a>
- (No table of contents file)
<a href="matlab:help visionutilities\visioninit">visionutilities\visioninit</a>
- (No table of contents file)
<a href="matlab:help visionutilities\visionmex">visionutilities\visionmex</a>
- (No table of contents file)
<a href="matlab:help vnt\vnt">vnt\vnt</a>
- Vehicle Netwo
rk Toolbox
<a href="matlab:help vnt\vntguis">vnt\vntguis</a>
- (No table
of contents file)
<a href="matlab:help vnt\vntdemos">vnt\vntdemos</a>
- (No tabl
e of contents file)
<a href="matlab:help vntblks\vntblks">vntblks\vntblks</a>
- (No t
able of contents file)
<a href="matlab:help vntblks\vntmasks">vntblks\vntmasks</a>
- (No
table of contents file)
<a href="matlab:help wavelet\wavelet">wavelet\wavelet</a>
- Wavel
et Toolbox
<a href="matlab:help wavelet\wmultisig1d">wavelet\wmultisig1d</a>
- (
No table of contents file)
<a href="matlab:help wavelet\wavedemo">wavelet\wavedemo</a>
- (No
table of contents file)
<a href="matlab:help wavelet\compression">wavelet\compression</a>
- (
No table of contents file)
<a href="matlab:help xpc\xpc">xpc\xpc</a>
- xPC Target
<a href="matlab:help xpcblocks\thirdpartydrivers">xpcblocks\thirdpartydrivers</a
>
- (No table of contents file)
<a href="matlab:help build\xpcblocks">build\xpcblocks</a>
- xPC T
arget -- Blocks
<a href="matlab:help build\xpcobsolete">build\xpcobsolete</a>
- (No
table of contents file)
<a href="matlab:help xpc\xpcdemos">xpc\xpcdemos</a>
- xPC Targ
et -- examples and sample script files.
lookfor %s
{Error using <a href="matlab:helpUtils.errorDocCallback('lookfor')" style="font-w
eight:bold">lookfor</a>
Not enough input arguments.}
%s
%8.3f
weight = 23476.54;
fprintf( The weight is %8.2f pounds \n , weight)
fprintf( The weight is %8.2f pounds \n , weight)
|
{Error: The input character is not valid in MATLAB statements or expressions.
}
weight = 23476.54;
fprintf('The weight is %8.2f pounds \n' , weight)
The weight is 23476.54 pounds
fprintf( The weight is %50.2f pounds \n , weight)
fprintf( The weight is %50.2f pounds \n , weight)
|
{Error: The input character is not valid in MATLAB statements or expressions.
}
fprintf('The weight is %50.2f pounds \n' , weight)

The weight is
help weight

23476.54 pounds

weight not found.


Use the Help browser search field to <a href="matlab:docsearch weight">search th
e documentation</a>, or
type "<a href="matlab:help help">help help</a>" for help command options, such a
s help for methods.
help width
--- help for cursor/width --<strong>width</strong> Get field size of column in fetched data set.
WTH = <strong>width</strong>(CURSOR,COLUMNNUMBER) returns the width of a
specific column in database table in characters. CURSOR is a cursor
object and COLUMNNUMBER is an integer that specifies
the column.
Example:
cursor=exec(conn,'select * from employees');
cursor=fetch(cursor);
colwidth=width(cursor,3)
MATLAB returns:
colwidth = 10
indicating the width of column 3 is 10 characters.
See also <a href="matlab:help cursor/fetch">fetch</a>.
disp(mike)
{Undefined function or variable 'mike'.}
disp('mike')
mike
[m,n]=axe(x,y,z)
{Undefined function or variable 'z'.}
[m,n]=axe(x,y,z);
{Undefined function or variable 'z'.}
z=4
z =
4
[m,n]=axe(x,y,z);
{Undefined function 'axe' for input arguments of type 'double'.}
[m,n]=axes(x,y,z);
{Error using <a href="matlab:helpUtils.errorDocCallback('axes')" style="font-weig
ht:bold">axes</a>
Too many output arguments.}
help placeholder
placeholder not found.
Use the Help browser search field to <a href="matlab:docsearch placeholder">sear
ch the documentation</a>, or
type "<a href="matlab:help help">help help</a>" for help command options, such a
s help for methods.

axes
help axes
<strong>axes</strong> Create axes in arbitrary positions.
<strong>axes</strong>('position', RECT) opens up an axis at the specified lo
cation
and returns a handle to it.
RECT = [left, bottom, width, height] specifies the location and
size of the side of the axis box, relative to the lower-left
corner of the Figure window, in normalized units where (0,0)
is the lower-left corner and (1.0,1.0) is the upper-right.
<strong>axes</strong>, by itself, creates the default full-window axis and r
eturns
a handle to it.
<strong>axes</strong>(H) makes the axis with handle H current.
Execute GET(H) to see a list of axes object properties and
their current values. Execute SET(H) to see a list of axes
object properties and legal property values.
See also <a href="matlab:help subplot">subplot</a>, <a href="matlab:help axi
s">axis</a>, <a href="matlab:help figure">figure</a>, <a href="matlab:help gca">
gca</a>, <a href="matlab:help cla">cla</a>.
Reference page in Help browser
<a href="matlab:doc axes">doc axes</a>
doc axes
help function
<strong>function</strong> Add new function.
New functions may be added to MATLAB's vocabulary if they
are expressed in terms of other existing functions. The
commands and functions that comprise the new function must
be put in a file whose name defines the name of the new
function, with a filename extension of '.m'. At the top of
the file must be a line that contains the syntax definition
for the new function. For example, the existence of a file
on disk called STAT.M with:
function [mean,stdev] = stat(x)
%STAT Interesting statistics.
n = length(x);
mean = sum(x) / n;
stdev = sqrt(sum((x - mean).^2)/n);
defines a new function called STAT that calculates the
mean and standard deviation of a vector. The variables
within the body of the function are all local variables.
See SCRIPT for procedures that work globally on the workspace.
A subfunction that is visible to the other functions in the
same file is created by defining a new function with the <strong>function</s
trong>
keyword after the body of the preceding function or subfunction.
For example, avg is a subfunction within the file STAT.M:
function [mean,stdev] = stat(x)
%STAT Interesting statistics.

n = length(x);
mean = avg(x,n);
stdev = sqrt(sum((x-avg(x,n)).^2)/n);
%------------------------function mean = avg(x,n)
%AVG subfunct

You might also like