Effacer les filtres
Effacer les filtres

regarding machine learning onramp

45 vues (au cours des 30 derniers jours)
Poojalakshmi N .B
Poojalakshmi N .B le 24 Mai 2020
Modifié(e) : Image Analyst le 13 Fév 2024
sir i am stuck at module 3.3 of machine learning onramp course at task 1.
please do help me to continue with the course.

Réponses (2)

VISHAL
VISHAL le 30 Mai 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")
function data = scale(data)
data.Time = (data.Time - data.Time(1))/1000;
data.X = 1.5*data.X;
end
  1 commentaire
sarthak bagadi
sarthak bagadi le 26 Oct 2022
Modifié(e) : sarthak bagadi le 26 Oct 2022
thanks bro!

Connectez-vous pour commenter.


Logesh B
Logesh B le 1 Jan 2022
preprocds = transform(letterds,@scale)
  6 commentaires
Jose
Jose le 13 Fév 2024
same here. Has someone managed to overcome this message?
Image Analyst
Image Analyst le 13 Fév 2024
Modifié(e) : Image Analyst le 13 Fév 2024
What is the link for the on-ramp course. If I call it up can I jump to that question or do I have to do all the prior tasks before getting to that?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by