regarding machine learning onramp

6 visualizaciones (últimos 30 días)
Poojalakshmi N .B
Poojalakshmi N .B el 24 de Mayo de 2020
Respondida: Sudharshan el 10 de Nov. de 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.

Respuestas (3)

VISHAL
VISHAL el 30 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")
function data = scale(data)
data.Time = (data.Time - data.Time(1))/1000;
data.X = 1.5*data.X;
end
  2 comentarios
sarthak bagadi
sarthak bagadi el 26 de Oct. de 2022
Editada: sarthak bagadi el 26 de Oct. de 2022
thanks bro!
JAWHAR HUSSAIN
JAWHAR HUSSAIN el 31 de Ag. de 2024
can you please give answer for task 4

Iniciar sesión para comentar.


Logesh B
Logesh B el 1 de En. de 2022
preprocds = transform(letterds,@scale)
  6 comentarios
Jose
Jose el 13 de Feb. de 2024
same here. Has someone managed to overcome this message?
Image Analyst
Image Analyst el 13 de Feb. de 2024
Editada: Image Analyst el 13 de Feb. de 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?

Iniciar sesión para comentar.


Sudharshan
Sudharshan el 10 de Nov. de 2024
function data = scale(data)
data.Time = (data.Time - data.Time(1))/1000;
data.X = 1.5*data.X;
data.X = data.X - mean(data.X);
data.Y = data.Y - mean(data.Y);
end

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by