用于将字符串写入excel的Matlab命令

时间:2016-05-09 20:37:29

标签: string excel matlab command

我正在尝试使用Matlab通过以下命令在excel文件的单元格中编写一个字符串: -

xlswrite('E:\ project \ messidor \ Testing image.xls','hello',1,'A3');

但问题是 hello 这个单词的每个字符都写在不同的单元格中。

在这个例子中,我希望将单词 hello 写入单元格 A3 ,但是h写入A3,e写入'B3',l is in' C3'等等。

请建议正确的命令。

1 个答案:

答案 0 :(得分:1)

您必须在单元格数组中传递值'hello',如下所示:

xlswrite('E:\project\messidor\Testing image.xls',{'hello'},1,'A3');

请查看documentation了解详情。