how to save for loop variable output data in csv file?

1 visualizzazione (ultimi 30 giorni)
I want to save for loop output in csv file. I want to save value of "label_index_expected" in csv file.I have tried but i am not getting how to save it.
for i = 1 : size(TV.T, 2)
[x, label_index_expected]=max(TV.T(:,i));
[x, label_index_actual]=max(TY(:,i));
if label_index_actual~=label_index_expected
MissClassificationRate_Testing=MissClassificationRate_Testing+1;
end

Risposta accettata

Walter Roberson
Walter Roberson il 29 Giu 2017
Modificato: Walter Roberson il 29 Giu 2017
numcol = size(TV.T, 2);
expecteds = zeros(numcol, 1);
for i = 1 :
[x, label_index_expected]=max(TV.T(:,i));
expecteds(i) = label_index_expected;
[x, label_index_actual]=max(TY(:,i));
if label_index_actual~=label_index_expected
MissClassificationRate_Testing=MissClassificationRate_Testing+1;
end
end
csvwrite('Youroutput.csv', expecteds);
It is possible to write each one out as you go, but it is not usually efficient to do so.

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB 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