Filter löschen
Filter löschen

how to save the values

1 Ansicht (letzte 30 Tage)
ajith
ajith am 3 Jun. 2013
how to save the all values of latent in the set of images if i run the code only the 7 image values only save how to reslove the problem
clc
clear all;
warning off all;
for loop=1:7
figname=strcat(sprintf('CLL (%d).png',loop));
img=double(imread(figname));
[pc, score,latent,tsquare] = princomp(img);
latent=latent(1:400,:);
latent=latent';
end

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 3 Jun. 2013
Bearbeitet: Andrei Bobrov am 3 Jun. 2013
latent = zeros(7,400);
for loop=1:7
figname=strcat(sprintf('CLL (%d).png',loop));
img=double(imread(figname));
[~,~,l0] = princomp(img);
latent(loop,:) = l0(1:400).';
end
  7 Kommentare
Andrei Bobrov
Andrei Bobrov am 3 Jun. 2013
Bearbeitet: Andrei Bobrov am 3 Jun. 2013
answer as corrected
ajith
ajith am 4 Jun. 2013
thanks a lot sir

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by