Hello everyone i am a new learner of matlab and trying to read and understand code line by line. For that i use matlab help to understand the command. But in many cases, when i enter any command in matlab help it shows not found. I am attaching a code here below. In the last line there is a command 'frames' which i didn't understand and could not find in matlab help as well. Please help me..
Frames = zeros(540, 960, 40);
c = 0;
for t=1:100
c = c + 1;
name = strcat('vid/Image',num2str(t),'.jpg');
display(name)
img=imread(name);
imggray=rgb2gray(img);
Frames(:, :, c)=imggray;
end
2 Comments
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/425366-not-understand-function-command#comment_625978
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/425366-not-understand-function-command#comment_625978
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/425366-not-understand-function-command#comment_626099
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/425366-not-understand-function-command#comment_626099
Sign in to comment.