필터 지우기
필터 지우기

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

조회 수: 3 (최근 30일)
tejasvee
tejasvee 2017년 6월 27일
댓글: tejasvee 2017년 6월 29일
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

채택된 답변

Walter Roberson
Walter Roberson 2017년 6월 29일
편집: Walter Roberson 2017년 6월 29일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by