in a csv file, it is a line like(45,85​,65,98,36,​56,83,10,8​,7),how can i make it 10*1 cell? thanks

조회 수: 1 (최근 30일)
the result what i want is:
45
85
65
98
36
83
10
8
7
I try to write like this
fid = fopen('R003.csv', 'wt');
fprintf(fid, '%s\n', R{:});
fclose(fid);
but the result has a small problem the result is like this
45,85,65,98,36,56,83,10,8,7
85
65
98
36
83
10
8
7
can you help me? thanks

채택된 답변

Star Strider
Star Strider 2014년 10월 15일
편집: Star Strider 2014년 10월 15일
If you want to write a .csv file, consider using csvsrite instead of fprintf.
Create it as a column vector, then write it:
V = [45,85,65,98,36,56,83,10,8,7]'; % Note Transpose
csvwrite('R003.csv', V)
  댓글 수: 4
pengcheng
pengcheng 2014년 10월 15일
thank you very much,and i modify that fprintf ,now it can work vell,two methodes are correct
Star Strider
Star Strider 2014년 10월 15일
My pleasure!
If it worked for you, I would appreciate it if you would Accept my Answer.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by