How I can load Machine learning Toolbox?

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 Kommentare

Walter Roberson
Walter Roberson am 17 Jul. 2019
Which MATLAB version are you using?
Faezeh Manesh
Faezeh Manesh am 18 Jul. 2019
R2019a version
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")

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 18 Jul. 2019
Bearbeitet: Walter Roberson am 18 Jul. 2019

0 Stimmen

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.

Weitere Antworten (1)

Preetha Manoharan
Preetha Manoharan am 10 Mai 2020

0 Stimmen

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")

Kategorien

Mehr zu Environment and Settings finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by