I have a data set that was created in an excel sheet and then downloaded to my computer. I am trying to analyze that data using MATLAB but I am not sure how to open the data in MATLAB.

 採用された回答

Image Analyst
Image Analyst 2022 年 7 月 27 日

1 投票

It depends on the format of the data file. Some things to try
data = readmatrix(fileName);
data = readcell(fileName);
data = importdata(fileName);
[data, strings, raw] = xlsread(fileName);

2 件のコメント

Gabriel
Gabriel 2022 年 7 月 27 日
I tried all of these options but it just says invalid use of operator.
Gabriel
Gabriel 2022 年 7 月 27 日
I figured it out, thank you!

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

その他の回答 (0 件)

質問済み:

2022 年 7 月 27 日

コメント済み:

2022 年 7 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by