Storing results from a nested for loop

조회 수: 2 (최근 30일)
Dat Tran
Dat Tran 2016년 6월 1일
답변: Iain 2016년 6월 7일
Dear all,
May you please find my attached file for my question regarding how to store the results from a nested for loop. I want the nested for loop storing the results as expected resulted in the attached file.
N = 2;
M = 8;
for i = 1:1:N
for j = 1:1:M
if swat_subbasin_id(j) == subbasin_id(i)
ID = s_tillage_id(j);
end
end
tillage_id(i) = ID;
end
AA = tillage_id';
disp(AA);
Thank you so much for your help! Best regards, Dat
  댓글 수: 1
Pavel Dey
Pavel Dey 2016년 6월 7일
Not sure if I understood your question correctly. Are you stuck at storing the results in an excel sheet? To read from and write to an excel sheet you will have to use 'xlsread' and 'xlswrite' functions. Refer to the documentation below

댓글을 달려면 로그인하십시오.

채택된 답변

Iain
Iain 2016년 6월 7일
Well theres two ways:
1. Write the results to file as they are generated. (xlswrite & xlsread would be your friends, and you just need to tell them where to write the latest value(s) as needed.) There are better options than xlswrite though.
2. Write the results to a 2-D variable, so, in your inner loop, you would have:
tillage_id(i,j) = s_tillage_id(j)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by