Create an excel sheet from data stored in variable used in a for loop
조회 수: 1 (최근 30일)
이전 댓글 표시
given loop:
input value = c
for m=0:1:c-1
if( some condition )
//some operation;
j=1;
else
j=0;
end
end
I want to store value of j for every iteration from 0 to c-1 in an excel sheet like lets say for c=5,my xls sheet should look some what like this:
// this is just a reference
1
0
0
1
0
댓글 수: 0
채택된 답변
Bob Thompson
2019년 7월 31일
From what you've posted, which is a bit vague, it seems like all you need to do is index your results and then use xlswrite to print the results.
for m = 1: c-1
...
j(m) = 1;
else
j(m) = 0;
end
end
xlswrite('mydata.xlsx',j)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!