regarding machine learning onramp
이전 댓글 표시
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
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
2022년 10월 26일
편집: sarthak bagadi
2022년 10월 26일
thanks bro!
JAWHAR HUSSAIN
2024년 8월 31일
can you please give answer for task 4
Logesh B
2022년 1월 1일
0 개 추천
preprocds = transform(letterds,@scale)
댓글 수: 6
Naethan Smith
2022년 2월 12일
It keeps coming up with an error message when I enter that code into task 2, is there an alternative code?
Tinghui
2022년 8월 19일
I echo the same question. It keeps saying " does the variable preprocds exist?"
구룽
2022년 10월 2일
same here.
Shraddha Gandham
2023년 1월 23일
same here
Jose
2024년 2월 13일
same here. Has someone managed to overcome this message?
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
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
카테고리
도움말 센터 및 File 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!