How can I save .mat to .csv file

조회 수: 3 (최근 30일)
Mira le
Mira le 2019년 12월 22일
답변: Image Analyst 2019년 12월 22일
I have a struct of name pop has diferent field saved as .mat I want to transform it as .csv file
How do I do that?
thanks.
  댓글 수: 1
dpb
dpb 2019년 12월 22일
What is content of field in question? If a numeric array, the simple csvwrite is hard to beat; otherwise somewhat more complex.
But, I always have to ask...is it really necessary to actually create the other file? What can you do with it you can't do simply by loading the .mat file and using the data therein as they are?

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

답변 (1개)

Image Analyst
Image Analyst 2019년 12월 22일
Did you try using brackets to string together all the fields into a vector and then concatenate and then use csvwrite()
field1Vec = [pop.field1];
field2Vec = [pop.field2];
data = [field1Vec, field2Vec]; % Make 2-D matrix.
csvwrite(filename, data); % or writematrix() in newer versions of MATLAB.
or use struct2table and writetable()
t = struct2table(pop);
writetable(t, fileName);

카테고리

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