フィルターのクリア

How to plot a line where the variable changes condition.

1 回表示 (過去 30 日間)
Jake
Jake 2012 年 11 月 25 日
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 Center および File Exchange2-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