How to load Excel .xlsx and .mat files into Matlab?

6 ビュー (過去 30 日間)
Josh Belandres
Josh Belandres 2020 年 4 月 25 日
コメント済み: Josh Belandres 2020 年 4 月 25 日
I was able to import a .xlsx file and a .mat file containing data that I need to use for my code. However when I use "load FileName" I get an error that says "unable to read file. No such file or directory." Please let me know how to do this.
  1 件のコメント
Sindar
Sindar 2020 年 4 月 25 日
Are you in the same folder as the file? Have you double-checked the spelling and extension (I can't tell you how many times I've been just slightly off).

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

採用された回答

per isakson
per isakson 2020 年 4 月 25 日
編集済み: per isakson 2020 年 4 月 25 日
The function, load(), cannot read excel-files.
"when I use "load FileName" I get an error" FileName is that the name of a mat-file? Or is FileName the name of a variable, the value of which is the name of a mat-file?
If FileName is the the name of a mat-file
load FileName
should work
If FileName is the name of a variable, the value of which is the name of a mat-file
load( FileName )
should work
See load()
  1 件のコメント
Josh Belandres
Josh Belandres 2020 年 4 月 25 日
Yes, I needed to use the load() function when reading mat. file and the xlsread function when reading excel files.
However to fix the errors I put my downloaded data into a new folder within the matlab folder, restarted matlab and then was able to load the data from the workspace.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by