how to convert a matrix into excel format in MATLAB 2018B
Mostra commenti meno recenti
how to convert a matrix into excel format. I have used writetable command, its not working..
1 Commento
KALYAN ACHARJYA
il 2 Mar 2020
writetable(variable_name,'filename.xlsx');
Risposte (1)
Sahithi Metpalli
il 5 Mar 2020
Hi,
You cannot directly write a matrix to excel in MATLAB2018b.You should first convert matrix to table and then use the writetable function as shown in the code below
table =array2table(matrix)
writetable(table,'filename.xls')
Categorie
Scopri di più su Spreadsheets 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!