How I can load Machine learning Toolbox?

12 ビュー (過去 30 日間)
Faezeh Manesh
Faezeh Manesh 2019 年 7 月 17 日
回答済み: Preetha Manoharan 2020 年 5 月 10 日
Hello,
I have a very basic question that I do not know how can I load machine learning toolbox and use it? I mean what should I write in my workspace in order to use this toolbox?Could you please help me with this problem?
  3 件のコメント
Faezeh Manesh
Faezeh Manesh 2019 年 7 月 18 日
R2019a version
Preetha Manoharan
Preetha Manoharan 2020 年 5 月 10 日
letterds = datastore("*_M_*.txt");
data = read(letterds);
data = scale(data);
plot(data.X,data.Y)
axis equal
plot(data.Time,data.Y)
ylabel("Vertical position")
xlabel("Time")

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

採用された回答

Walter Roberson
Walter Roberson 2019 年 7 月 18 日
編集済み: Walter Roberson 2019 年 7 月 18 日
https://www.mathworks.com/matlabcentral/answers/101885-how-do-i-install-additional-toolboxes-into-an-existing-installation-of-matlab
You can also use the Add-on Explorer to install toolboxes you are licensed for.
Note that the toolbox name is Statistics and Machine Learning, and that this is a different toolbox than Deep Learning.
  1 件のコメント
Faezeh Manesh
Faezeh Manesh 2019 年 7 月 18 日
Thank you very much

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

その他の回答 (1 件)

Preetha Manoharan
Preetha Manoharan 2020 年 5 月 10 日
letterds = datastore("*_M_*.txt");
data = read(letterds);
data = scale(data);
plot(data.X,data.Y)
axis equal
plot(data.Time,data.Y)
ylabel("Vertical position")
xlabel("Time")

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by