How to plot a line where the variable changes condition.

1 次查看(过去 30 天)
So from 0<x<1.8 Z=1.25*((0.72*(x/5))-((x/5).^2));
and from 1.8<x<5 Z=(1125/1024)*((0.28+(0.72*(x/5)))-((x/5).^2));
Is there anyway I can enter this without putting it into 2 different parts?
Thanks

采纳的回答

Matt J
Matt J 2012-11-25
Z=@(x) 1.25*((0.72*(x/5))-((x/5).^2)).*(x>0 & x<1.8)+...
(1125/1024)*((0.28+(0.72*(x/5)))-((x/5).^2)).*(x>1.8 & x<5);

更多回答(1 个)

bym
bym 2012-11-25
c = [-.05 .18 0;...
-.0439 .1582 .3076];
b = [0,1.8,5];
f = mkpp(b,c);
xx = 0:.1:5;
plot(xx,ppval(f,xx))

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by