在 MATLAB 中将多个矩阵导出到 Excel
我想写入一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试:
希望有帮助。
You can try:
Hope that helps.