Info

此问题已关闭。 请重新打开它进行编辑或回答。

dimension mismatch error

1 次查看(过去 30 天)
chitra s
chitra s 2012-5-11
关闭: MATLAB Answer Bot 2021-8-20
clc;
clear all;
allsamples=[];
for i=1:6
tic
a=imread(strcat('C:\Users\user\Documents\MATLAB\face','\',num2str(i),'.jpg'));
imshow(a);
b=a(1:112*92);
b=double(b);
allsamples=[allsamples;b];
toc
end
samplemean=mean(allsamples);
xmean=zeros();
for i=1:200
xmean(i,:)=allsamples(i,:)-samplemean;
end
from the above program i got the error message as
??? Subscripted assignment dimension mismatch.
Error in ==> example1 at 16
xmean(i,:)=allsamples(i,:)-samplemean;
how to clear this error plz help me

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2012-5-11
pre-allocation:
xmean = zeros(200,size(allsamples,2));
OR:
xmean = bsxfun(@minus,allsamples(1:200,:),mean(allsamples));

此问题已关闭。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by