94117239 发表于 2007-10-13 11:07

如何把一个字符串写到excel的一个格子里面

如何把一个字符串写到excel的一个格子里面
m文件代码
%%%向w.xls文件写入10%
m=strcat(num2str(round(10)),'%');
xlswrite('w.xls',m,'sheet1','a1:c10');
黄颜色数据是写入结果,每个字符占一列,红颜色的是我的预期结果(自己手动输入的),10%占一列。我哪个地方弄错了

[ 本帖最后由 lxq 于 2007-10-13 16:23 编辑 ]

心灯 发表于 2007-10-13 13:18

以后好好用doc命令吧:
doc xlswrite

Example 2 — Writing Mixed Data to a Specific WorksheetThis example writes the following mixed text and numeric data to the
file tempdata.xls:d = {'Time', 'Temp'; 12 98; 13 99; 14 97};Call xlswrite, specifying the worksheet
labeled Temperatures, and the region within the worksheet
to write the data to. The 4-by-2 matrix will be written to the rectangular
region that starts at cell E1 in its upper left corner:s = xlswrite('tempdata.xls', d, 'Temperatures', 'E1')
s =
    1The output status s shows that the write operation
succeeded. The data appears as shown here in the output file:
Time   Temp
12   98
13   99
14   97

你的问题答案:
m=cellstr(strcat(num2str(round(10)),'%'));
xlswrite('w.xls',m,'sheet1','a1:a10');

花如月 发表于 2007-10-13 13:58

前辈高人,以后多来本版哈:handshake

home96 发表于 2007-10-13 15:59

这样也可以吧!
m={'10%'};
xlswrite('w.xls',m,'a1:a10');

花如月 发表于 2007-10-13 16:10

回复 #4 home96 的帖子

是一样的,心灯院长的用得用得更普遍些

94117239 发表于 2007-10-13 16:11

晕,关键是计算出来的,楼上的方法肯定行不通,楼上的只能输固定的,计算的就不行了

花如月 发表于 2007-10-13 16:14

回复 #6 94117239 的帖子

2楼正解啊,我都说了4楼的用法不普遍了

94117239 发表于 2007-10-13 16:26

已经做成了,谢谢楼上几位帮助,

wuygoon 发表于 2009-2-1 14:04

O(∩_∩)O谢谢前辈的指点,启发很大!!!

bainhome 发表于 2009-2-1 21:47

EXCEL中一样可以实现,另外MATLAB中那个百分号可以不要。
在C1内输入(MATLAB代码中已经提示源数据写入从a1单元格开始):=A1&B1&"%"最后下拉复制公式。
页: [1]
查看完整版本: 如何把一个字符串写到excel的一个格子里面