How I can load Machine learning Toolbox?

조회 수: 11 (최근 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개)

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 CenterFile Exchange에서 Statistics 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