CALCULATESIZE(FILENAME) determines the number of nodes in the parse tree associated with the file FILENAME for use in the game Cody. For more information on Cody, refer to http://www.mathworks.com/matlabcentral/about/cody/
Santosh Kasula (2021). Calculate size (https://www.mathworks.com/matlabcentral/fileexchange/34754-calculate-size), MATLAB Central File Exchange. Retrieved .
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
tksss, very useful
Thank you,chris.
I thought the size of function has something to do with input arguments,I was wrong.
calculateSize(''myfile.m') is just ok.
I know this is almost a year later but I had the same problem as yao in that I had trouble getting this program running.
If you want to check the size of your file create a variable called fileName and assign the file you want to check like this
fileName = 'myfile.m'
Could you give an example to explain how to use this funtion?I have no idea how to deal with functions with input arguments.Always has errors.Thank you.
function y = nearZero(x)
y = [];
w = [x(2) x x(end-1)];
J=0;
for I = 2:(length(w)-1)
if ((w(I)~=0)&&((w(I-1)==0)||(w(I+1)==0)))
J = J + 1;
v(J) = w(I);
end
end
y = max(v');
end
size of calculateSize.m is 21 ;)
One comment : I would not use the size variable as output of this function since size is a MATLAB function name .