how to save the values

1 vue (au cours des 30 derniers jours)
ajith
ajith le 3 Juin 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

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 3 Juin 2013
Modifié(e) : Andrei Bobrov le 3 Juin 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 commentaires
Andrei Bobrov
Andrei Bobrov le 3 Juin 2013
Modifié(e) : Andrei Bobrov le 3 Juin 2013
answer as corrected
ajith
ajith le 4 Juin 2013
thanks a lot sir

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Dimensionality Reduction and Feature Extraction dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by