How to convert a .mat file into a .csv file?
Mostra commenti meno recenti
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 Commenti
Image Analyst
il 30 Mar 2015
Please attach your filename.mat and filename.csv.
Dhiraj Jagadale
il 20 Mar 2018
Modificato: Dhiraj Jagadale
il 20 Mar 2018
I want to convert data from SPM tool to .csv format. SPM stores a file in .mat and .dat format. structure is saved in .mat and .dat file contain actual data. Please tell me way to use both of these files and convert to CSV. Also, how I can retrieve the 4 trials in my data.
Jose Ocampo
il 1 Mar 2023
how I can said the link where will be created the file
Image Analyst
il 1 Mar 2023
@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.
Risposta accettata
Più risposte (3)
Ashlesh Sortee
il 4 Lug 2017
8 voti
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
2 Commenti
Ayman
il 22 Giu 2024
but what if the data set is very large it will not work then
Image Analyst
il 22 Giu 2024
@Ayman once you have the variable in MATLAB, then you can use writematrix to write it to a disk file, then use File/Open in Excel to read it into Excel.
Ashlesh Sortee
il 4 Lug 2017
Modificato: Ashlesh Sortee
il 4 Lug 2017
5 voti
FileData = load('FileName.mat'); csvwrite('FileName.csv', FileData.FileName);
- | | * This one worked for me||*
- Thanks Jan Simon
1 Commento
YASSINE
il 25 Apr 2023
it does not work
Image Analyst
il 30 Mar 2015
0 voti
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 Commenti
Jan
il 30 Mar 2015
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
il 30 Mar 2015
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.
Categorie
Scopri di più su Text Files in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!