How I can load Machine learning Toolbox?
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 17 de Jul. de 2019
Which MATLAB version are you using?
Faezeh Manesh
el 18 de Jul. de 2019
Preetha Manoharan
el 10 de Mayo de 2020
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")
Respuesta aceptada
Más respuestas (1)
Preetha Manoharan
el 10 de Mayo de 2020
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")
Categorías
Más información sobre Environment and Settings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!