Clear Filters
Clear Filters

Loading data from Excel file

3 views (last 30 days)
Tino
Tino on 1 May 2019
Commented: Guillaume on 1 May 2019
Hello
Please can anyone assist me on how to load data from excel file using the function load
Thanks in advance
Tino
  1 Comment
Guillaume
Guillaume on 1 May 2019
You cannot use the function load to read excel file, and it's puzzling why you think you could. load only works for loading mat files (and a few types of text files that are better read with other functions).
See KSSV's answer for which functions to use.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 1 May 2019
The only kind of "excel file" that you can use with load() is a .csv file. In order to use a .csv file with load(), it must be purely numeric with no headers, and with no text, and with no missing entries.
.xls and .xlsx files can never be used with load(). .csv files with missing entries or with any text anywhere cannot be used with load(). Also, .csv files that use comma as the decimal separator will not be interpreted correctly by load() if they manage to load at all.

More Answers (0)

Tags

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!