How to convert a .mat file into a .csv file?

조회 수: 2,139 (최근 30일)
hello_world
hello_world 2015년 3월 30일
댓글: Rik 2023년 4월 25일
Hello Friends,
I have a .mat file loaded in workspace. I want to convert it into .csv file. It has real entries. I used to convert it before using the following commands without any problem:
M = dlmread('FileName.mat', '\t', 1, 0);
csvwrite('FileName.csv', M)
But now something is wrong with MATLAB. My dataset is the same. Nothing has changed, but now it gives the following error:
Error using dlmread (line 139)
Mismatch between file and format string.
Trouble reading number from file (row 1u, field 1u) ==>
}Ûa&Ír!ÃþxbSoÈñæo8k:¬i’³*Y#~!IjË9B¯ÝWG~
¬zN=å0ÉÀo8Ó'Rå@õR[iãY>,xÊ8UrVÀ9ó";~~ÀOWAe$Æ\:xfnFVAÿñϼÓЪÍðaþ\n
I wonder if MATLAB changed something with dlmwrite function! Please advise.
  댓글 수: 4
Jose Ocampo
Jose Ocampo 2023년 3월 1일
how I can said the link where will be created the file
Image Analyst
Image Analyst 2023년 3월 1일
@Jose Ocampo I don't know what you mean. When you do
csvwrite('FileName.csv', M)
the file is created in the current directory -- what you see in the directory/address field in MATLAB.

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

채택된 답변

Jan
Jan 2015년 3월 30일
FileData = load('FileName.mat');
csvwrite('FileName.csv', FileData.M);
  댓글 수: 14
YASSINE
YASSINE 2023년 4월 25일
does not work
Rik
Rik 2023년 4월 25일
@Yassine, if you want help, you will have to provide more details. We can't read your mind or your screen.

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

추가 답변 (3개)

Ashlesh Sortee
Ashlesh Sortee 2017년 7월 4일
simply you can copy and paste the matrix you want in excel
  • all you have to do is open .mat file in matlab , press 'ctr+A' & 'ctr+C' in the variable tab and paste it in new excel sheet

Ashlesh Sortee
Ashlesh Sortee 2017년 7월 4일
편집: Ashlesh Sortee 2017년 7월 4일
FileData = load('FileName.mat'); csvwrite('FileName.csv', FileData.FileName);
  • | | * This one worked for me||*
  • Thanks Jan Simon

Image Analyst
Image Analyst 2015년 3월 30일
You're trying to save the variable called FileName20.mat in dlmwrite(). If that's the variable, then you have a dot in the name which means that FileName20 must be a structure, and mat must be a field/member of the structure. It's clearly not - you don't have any structure variable in your program called FileName20. You probably need to pass in M instead of FileName20.
  댓글 수: 2
Jan
Jan 2015년 3월 30일
I do not believe that this has worked before. You cannot read a MAT file by dlmread. MAT files are imported by load.
Image Analyst
Image Analyst 2015년 3월 30일
I totally agree with Jan. See Jan's answer, then "Accept" it. It loads your file into a structure called FileData. The "M" array that you stored in the mat file will be a "field" of FileData. Then he writes out only that field to your new csv file.

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

카테고리

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