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일

2 개 추천

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일

0 개 추천

preprocds = transform(letterds,@scale)

댓글 수: 6

Naethan Smith
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
Tinghui 2022년 8월 19일
I echo the same question. It keeps saying " does the variable preprocds exist?"
구룽
구룽 2022년 10월 2일
same here.
Shraddha Gandham
Shraddha Gandham 2023년 1월 23일
same here
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일

0 개 추천

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에 대해 자세히 알아보기

질문:

2020년 5월 24일

답변:

2024년 11월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by