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

採用された回答

KALYAN ACHARJYA
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 件のコメント
Amanda
Amanda 2022 年 10 月 27 日
I tried this and i keep getting this error
Error using readmatrix
Unable to find or open 'markers_trial001.xlsx'. Check the path and filename or file permissions.
Error in importantaMarkerDataFromXls (line 1)
data_excel=readmatrix('markers_trial001.xlsx')
KALYAN ACHARJYA
KALYAN ACHARJYA 2022 年 10 月 27 日
Ensure that file in current working directory & check the file name again.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by