how to save the values

1 visualizzazione (ultimi 30 giorni)
ajith
ajith il 3 Giu 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

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 3 Giu 2013
Modificato: Andrei Bobrov il 3 Giu 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 Commenti
Andrei Bobrov
Andrei Bobrov il 3 Giu 2013
Modificato: Andrei Bobrov il 3 Giu 2013
answer as corrected
ajith
ajith il 4 Giu 2013
thanks a lot sir

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Dimensionality Reduction and Feature Extraction in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by