I am currently working on code which takes a stack of images and calculates the intensity profiles of these stacks to compare them with another stack of images.
Here's my code:
for i = 1:c_frames
d_Img(:,:) = d_I(i,:,:);
c_Img(:,:) = c_I(i,:,:);
c_d = improfile(d_Img);
c_c = improfile(c_Img);
end
These are the set of errors (all pertaining to one error of course) that I get:
When I whos
d_I and c_I, this is what I get:
So what exactly does the error mean, I tried to look into the documentation, but I wasn't sure as to what the N
meant.
Thank you for your answers and please do not hesitate to ask any questions that will further clarify the question.