Wants to add each iteration data in the next column.
3 次查看(过去 30 天)
显示 更早的评论
x=rch;
flow=rch(:,8);
c=0;
for i=1:166 %c=c+1
for c=c+1 %c<166
ind1 = rch(:,2) == c;
flow_out2= flow(ind1);
end
% xlswrite('out.xlsx', flow_out2','A1:FJ2191')
flow_out2 = [flow_out2 dataToAppend];
end
8 个评论
Rik
2020-2-6
First write the contents of your loop. What is the code you want to run for a single iteration? Only then should you start with putting a loop around that.
As for your last question: try to think what you are saying with that line. You are telling Matlab to create a vector (c+1) and run the code inside the loop for each element, using c as the variable to store the elements in. While that is valid code, it is probably not what you mean.
Have you considered doing a tutorial to get up to speed with the basic Matlab syntax?
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!