regarding machine learning onramp

조회 수: 5 (최근 30일)
Poojalakshmi N .B
Poojalakshmi N .B 2020년 5월 24일
답변: Sudharshan 2024년 11월 10일
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.

답변 (3개)

VISHAL
VISHAL 2020년 5월 30일
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
sarthak bagadi
sarthak bagadi 2022년 10월 26일
편집: sarthak bagadi 2022년 10월 26일
thanks bro!
JAWHAR HUSSAIN
JAWHAR HUSSAIN 2024년 8월 31일
can you please give answer for task 4

댓글을 달려면 로그인하십시오.


Logesh B
Logesh B 2022년 1월 1일
preprocds = transform(letterds,@scale)
  댓글 수: 6
Jose
Jose 2024년 2월 13일
same here. Has someone managed to overcome this message?
Image Analyst
Image Analyst 2024년 2월 13일
편집: Image Analyst 2024년 2월 13일
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?

댓글을 달려면 로그인하십시오.


Sudharshan
Sudharshan 2024년 11월 10일
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

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by