I have data which class is char. I need to write this data in word doc. Which function I need to use?
1 次查看(过去 30 天)
显示 更早的评论
%my inputs;
parameters = 0:.1:1
A = [ parameters; exp(parameters)]
degree=('0.233 ppm')
fileID = fopen('trial.doc','w')
fprintf(fileID,'%6s %12s\n','parameters','rms')
fprintf(fileID,'%6.2f %30.8f\n',A)
fprintf(fileID,'%6s %12s\n\n\n',' ', ' ')
fprintf(fileID,'%6s %12s\n','parameters_2','rms_2')
%after this stage I want to write "degree" data below the rms_2 but this data is char, how can I write this data in word?
1 个评论
采纳的回答
Daniel Pereira
2013-7-17
try http://www.mathworks.com/matlabcentral/fileexchange/15192-officedoc-readwriteformat-ms-office-docs-xlsdocppt for writning into office (xls/doc/ppt).
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 String Parsing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!