Create data set according to a plot ?
1 回表示 (過去 30 日間)
古いコメントを表示
How can I create this input data set in matlab? (according to the figure).
Because I want to input this data set into simulink to do a simulation.
This chart the increasement and decreasement could be any value.
Please help me with this problem.
Thank you.
0 件のコメント
採用された回答
KSSV
2019 年 6 月 10 日
t = [0 10 15 30 40 50 60] ;
vel = [20 20 30 30 10 5 5] ;
plot(t,vel)
ylim([0 35])
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Bar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!