How to plot an equation qith specific data range?
1 次查看(过去 30 天)
显示 更早的评论
Hello
I have a question about a code. I would like to plot an equation in a plot. But I would like to plot a specific data range of the equation.
E.g X values range from 0 to 100. But i would like to depict ONLY the values between 25-80for equation y.
clc
clear
x=0:5:100
y=3*x+10
y1=4*x+5
plot(x,y)
hold on
plot(x,y1)
could you please help me?
0 个评论
回答(1 个)
Joseph Cheng
2021-6-3
For this you can use the function ylim()
clc
clear
x=0:5:100;
y=3*x+10;
y1=4*x+5;
plot(x,y)
hold on
plot(x,y1)
ylim([25 80])
2 个评论
Joseph Cheng
2021-6-3
there are lots of ways but since you are not very clear...................
clc
clear
x=0:5:100;
y=3*x(x>=25&x<=85)+10;
y1=4*x+5;
subplot(211)
plot(x(x>=25&x<=85),y);
hold on
plot(x,y1);
subplot(212)
y=3*x+10;
[ax h1 h2]=plotyy(x,y,x,y1);
ylim(ax(1),[25 85])
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!