How continuously saved to excel file

조회 수: 5 (최근 30일)
BB
BB 2012년 11월 13일
My workspace have A1 ~ A100 ,total 100 matrix
I want to save it as a excel file, the file name is the same as A1.csv ....
A100.csv
how to do it?
Thanks~!

답변 (4개)

Rica
Rica 2012년 11월 13일
Hi!
xlswrite('data.xls', {'title1' 'title2' 'title3'}, 'Sheet1', 'A1')
xlswrite('tempdata1.xls', ['data1 data2 data3'], 'Sheet1', 'A1')
  댓글 수: 1
BB
BB 2012년 11월 13일
HI.but I steel don't know how to write excel file continuously.

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


Image Analyst
Image Analyst 2012년 11월 13일
Evidently you don't want xlswrite(). You said you want csv files, so you need to use csvwrite(). You can't write continously, unless you open the file with fopen(), and write stuff out line by line with fprintf().

BB
BB 2012년 11월 13일
편집: BB 2012년 11월 13일
This is my code
for d=1:100;
eval(['csvwrite(''A',num2str(d),'.csv'')','=A',num2str(d)]);
end
what wrong about me?
  댓글 수: 1
Image Analyst
Image Analyst 2012년 11월 13일
편집: Image Analyst 2012년 11월 13일
Well for one thing, you gave this as an answer when you should have edited your question. Next, this will not produce csv files - it will produce xls workbooks. Third, this will take an eternity because you will have to launch Excel and shutdown Excel 100 times. Use ActiveX if you want to do more than 1 or two writes to a workbook(s). Check out xlswrite1() in the File Exchange for instructions on how to use ActiveX. And finally, you didn't format your code as code. Highlight your code and click the {}Code icon to make it look like code.

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


Jan
Jan 2012년 11월 13일
Remark: Using "A1" to "A100" is a bad idea. Using a cell "A{1}" to "A{100}" is much more useful, because you could process the data in a loop without the need to call the evil and confusing EVAL.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by