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
Jan
Jan 2013년 7월 17일
편집: Jan 2013년 7월 17일
What does "in word" mean? Do you mean Word of the Microsoft Office or do you mean a simple text file? What are >>the "degree" data<< ? Please do not let us guess, what you are doing. Post a running example and format the code properly.

댓글을 달려면 로그인하십시오.

채택된 답변

Daniel Pereira
Daniel Pereira 2013년 7월 17일

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by