使用matlab在不同的单元格ID(在Excel中)中编写for循环的输出
我有一个 for 循环
<块引用>计数=1
对于 i=4:10
xlswrite('错误.xls', 'T', '目标', ['A' num2str(count)]);
xlswrite('错误.xls', testT, '目标', ['B' num2str(count)]);
xlswrite('错误.xls', 'O', '输出', ['A' num2str(count)]);
xlswrite('error.xls', testy, '输出', ['B' num2str(count)]);
计数=计数+1;
结束
值写在不同的表中。我想要的是在同一张表中 testT 的值从 B1 开始到 Q1(比如说)
testy 从 B2 开始到 Q2
,然后进行下一次迭代 --- testT 从 B6 开始到 Q6(比如说)
testy 从 B7 开始到 Q7..
我无法在 for 循环内制定逻辑...所以任何擅长这方面的人请帮助我..
I have a for loop
count=1
for i=4:10
xlswrite('error.xls', 'T', 'Target', ['A' num2str(count)]);
xlswrite('error.xls', testT, 'Target', ['B' num2str(count)]);
xlswrite('error.xls', 'O', 'Output', ['A' num2str(count)]);
xlswrite('error.xls', testy, 'Output', ['B' num2str(count)]);
count=count+1;
end
But its writing the value in different sheet. what I want is in the same sheet the value of testT starts from B1 to Q1(say)
and testy starts from B2 to Q2
and then for next iteration --- testT starts from B6 to Q6(say)
and testy starts from B7 to Q7..
I am not able to formulate the logic inside the for loop... so anybody who is good in this please help me out..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将数据写入同一张表(例如“目标”),并在写入每一行后增加
count
:You have to write the data to the same sheet (say, 'Target') and increase the
count
after writing to each row: