필터 지우기
필터 지우기

regarding machine learning onramp

조회 수: 44 (최근 30일)
Poojalakshmi N .B
Poojalakshmi N .B 2020년 5월 24일
편집: Image Analyst 2024년 2월 13일
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.

답변 (2개)

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
  댓글 수: 1
sarthak bagadi
sarthak bagadi 2022년 10월 26일
편집: sarthak bagadi 2022년 10월 26일
thanks bro!

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


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?

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

카테고리

Help CenterFile Exchange에서 Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by