How do you write a function that imports data from an .xlsx file and saves the data as a .mat?
1 回表示 (過去 30 日間)
古いコメントを表示
I need to write a function that imports data from an .xlsx file and saves the data as a .mat using xlsread. I'm just not even sure where to start with this one
0 件のコメント
採用された回答
KALYAN ACHARJYA
2022 年 10 月 27 日
編集済み: KALYAN ACHARJYA
2022 年 10 月 27 日
Load the data using readmatrix function
data_excel=readmatrix('file_name.xlsx') ; % Check the file format name
Save the file in mat format
Hope it helps!
2 件のコメント
KALYAN ACHARJYA
2022 年 10 月 27 日
Ensure that file in current working directory & check the file name again.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!