Matlab Commands Functions For Signal Processing & Control
Matlab Commands Functions For Signal Processing & Control
html
Contents
The following functions are vital in order to develop an understanding of Signal Processing
and Control Theory
1 of 2 30/01/2012 12:22
Matlab Commands/Functions for Signal Processing & Control file:///D:/Dropbox/matlab/html/cheat_sheet.html
When Matlab Commands Start to Look Complicated (but they aren't really)
Here is an example of how to plot a random signal with 1000 sample values between 30 and
40 which have been rounded to the nearest integer.
Most students could make sense of the above code with little or no assistance. However if
they were presented with the following code (which does the same as above in one line) they
might have some difficulty when starting to get comfortable with Matlab.
plot(round((rand(1,1000)*10)+30));
One of the biggest challanges for students new to matlab is to recognise that such commands
are simply a sequence of basic commands.
2 of 2 30/01/2012 12:22