how to add rownames and column names for mat file
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have some matfiles and i need to assign row names to all the rows of mat file
0 comentarios
Respuestas (1)
Image Analyst
el 16 de Sept. de 2018
A mat file does not have rows. You can save an additional variable in your mat file if you want though. Just list them all
save('my variables.mat', 'var1', 'rowHeadings', 'fileNames', 'dataTable');
or whatever. Adapt as needed.
Ver también
Categorías
Más información sobre Structures 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!