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
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 ExchangeDevelop 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