regarding machine learning onramp
15 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
回答 (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 件のコメント
Logesh B
2022 年 1 月 1 日
preprocds = transform(letterds,@scale)
6 件のコメント
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
0 件のコメント
参考
カテゴリ
Help Center および 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!