Converting a .mat file to .xls
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi there,
Is there anyway to convert a .mat file to an excel file in matlab?
Thank you
0 comentarios
Respuestas (2)
Kaustubha Govind
el 24 de Feb. de 2012
You need to write MATLAB code to do this. First load the contents of the MAT-file into the workspace using the load command. You can then get the names of the variables in the workspace by using something like:
varNames = who;
Be careful to not get variables that you may have created before the MAT-file was loaded.
0 comentarios
Sean de Wolski
el 24 de Feb. de 2012
doc importdata
doc xlswrite
Some friends for your journey...
0 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!