在 MATLAB 中将多个矩阵导出到 Excel

发布于 2024-10-21 03:53:51 字数 293 浏览 3 评论 0原文

我想写入一个excel文件n个矩阵,如果我希望2个在同一页面上,另外两个在同一页面上,

我该

xlswrite('file.xls', matrix1, 'page1', 'A1');
xlswrite('file.xls', matrix2, 'page1', 'A50');

怎么做有没有办法使第四个参数动态化,例如

xlswrite('file.xls', matrix2, 'page1', 'A'%size(matrix));

I want to write to an excel file n matrices, if I would like 2 to be in the same page, and other two on the same page, how to do it

I have

xlswrite('file.xls', matrix1, 'page1', 'A1');
xlswrite('file.xls', matrix2, 'page1', 'A50');

Is there a way to make dynamic the 4th parameter like

xlswrite('file.xls', matrix2, 'page1', 'A'%size(matrix));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

超可爱的懒熊 2024-10-28 03:53:51

您可以尝试:

xlswrite('file.xls', matrix2, 'page1', ['A' num2str(length(matrix2))]);

希望有帮助。

You can try:

xlswrite('file.xls', matrix2, 'page1', ['A' num2str(length(matrix2))]);

Hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文