Hello Experts,
As I am new to Matlab and I don’t know why this error can be removed? I am getting this error
‘Error using reshape
To RESHAPE the number of elements must not change.’
by using this code i.e,
message=double(imread(file_name));
M1m=size(message,1); %Row
M2m=size(message,2); %Col
% convertIng the attained message into a vector
message= round(reshape(message,M1m*M2m,1)./256);
Any help would be appreciated.
Thanks