how do i plot y=6sin(t+0.5) and y=5 between 0 and 20 in steps of 0.001
Show older comments
how do i plot y=6sin(t+0.5) and y=5 between 0 and 20 in steps of 0.001
4 Comments
Dyuman Joshi
on 23 Apr 2023
Walter Roberson
on 23 Apr 2023
Zack
on 23 Apr 2023
You don't define t in your code. Shouldn't it be x ?
And if you do it this way:
y2 = 5*ones(size(x))
instead of
y2 = 5
Answers (1)
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 !
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!