Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

dimension mismatch error

1 vue (au cours des 30 derniers jours)
chitra s
chitra s le 11 Mai 2012
Clôturé : MATLAB Answer Bot le 20 Août 2021
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

Réponses (1)

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

Cette question est clôturée.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by