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!