Hi all, I have .mat file which has 11 different parameters in it, say par1, par2,par3, etc. Is there any way to save this "mat" file as a CSV file? I want to have the name of the parameters (par1,par2, ...) on the first row of the CSV as well.
Thanks

댓글 수: 2

Paolo
Paolo 2018년 6월 7일
What are the contents of par1, par2, par3? Can you add your .mat file to your question?
Roozbeh Yousefnejad
Roozbeh Yousefnejad 2018년 6월 7일
different parameters with 101 data in each one. Sure, I've attached it to this comnt.
First I need to transpose them to have each parameter in one column. then I want to put them together in one CSV file and on the first row add the name of each parameter.

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

 채택된 답변

Onur Kapucu
Onur Kapucu 2018년 6월 7일
편집: Onur Kapucu 2018년 6월 7일

0 개 추천

This should do it
EL_struct = open('el.mat');
EL_transposed = structfun(@transpose,EL_struct,'UniformOutput',false);
data = struct2table(EL_transposed);
writetable(data);

댓글 수: 3

Roozbeh Yousefnejad
Roozbeh Yousefnejad 2018년 6월 7일
편집: Roozbeh Yousefnejad 2018년 6월 7일
Wow thanks, honestly, what you did is more than my knowledge;-) it almost works for me. the only things is that the output a note file. Do you think I can use csvwrite to make an csv file?
Paolo
Paolo 2018년 6월 7일
Change
writetable(data)
to
writetable(data,'el.csv');
Roozbeh Yousefnejad
Roozbeh Yousefnejad 2018년 6월 7일
Fantastic. Thank you so much Onur and Paolo. you helped me a lot. thanks

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

제품

릴리스

R2017b

태그

Community Treasure Hunt

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

Start Hunting!

Translated by