how do i plot y=6sin(t+0.5) and y=5 between 0 and 20 in steps of 0.001
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
Aditya Srikar
2023 年 4 月 28 日
Hi Zack
The following code will display the plot as required
x= 0 : 0.001 : 20;
y= 6*sin(x+0.5);
plot(x, y, 'green')
hold on
yline(5, 'red')
grid
xlabel('x units')
ylabel('y units')
hold off
Hope it helps !
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!