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 个评论
Walter Roberson
2019-7-17
Which MATLAB version are you using?
Faezeh Manesh
2019-7-18
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")
采纳的回答
更多回答(1 个)
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")
类别
在 帮助中心 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!