使用matlab在不同的单元格ID(在Excel中)中编写for循环的输出

发布于 2024-12-25 18:43:07 字数 711 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂归处 2025-01-01 18:43:08

您必须将数据写入同一张表(例如“目标”),并在写入每一行后增加 count

testT = 1:10;
testy = 1:10;

count = 1;
for i = 4:10
  xlswrite('error.xls', 'T',   'Target', ['A' num2str(count)]);
  xlswrite('error.xls', testT, 'Target', ['B' num2str(count)]);
  count = count + 1;

  xlswrite('error.xls', 'O',   'Target', ['A' num2str(count)]);
  xlswrite('error.xls', testy, 'Target', ['B' num2str(count)]);
  count = count + 1;
end

You have to write the data to the same sheet (say, 'Target') and increase the count after writing to each row:

testT = 1:10;
testy = 1:10;

count = 1;
for i = 4:10
  xlswrite('error.xls', 'T',   'Target', ['A' num2str(count)]);
  xlswrite('error.xls', testT, 'Target', ['B' num2str(count)]);
  count = count + 1;

  xlswrite('error.xls', 'O',   'Target', ['A' num2str(count)]);
  xlswrite('error.xls', testy, 'Target', ['B' num2str(count)]);
  count = count + 1;
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文