functions_8
functions_8
https://www.mathworks.com/help/matlab/ref/function.html
https://majackmer85.files.wordpress.com/2014/11/tercera-edtion-matlab.pdf , (CHAPTER 6)
calc_average(2,4)
ans = 3
n=1:90;
vect_average(n)
ans = 45.5000
Function types
• Local Functions
• Nested Functions
• Private Functions
• Anonymous Functions
Define a function in a file named stat.m that returns the mean and
standard deviation of an input vector.
values = [12.7, 45.4, 98.9, 26.6, 53.1];
[ave,stdev] = stat(values)
ave = 47.3400
stdev = 29.4124
where
Script Files
https://www.mathworks.com/help/matlab/matlab_prog/create-scripts.html
1
Scripts vs. Functions
https://www.mathworks.com/help/matlab/matlab_prog/scripts-and-functions.html