how to make piecewise continuous function periodic?
古いコメントを表示
Hi, I have written this code for a piecewise continuous function for
f(x) = {2*sqrt(x) 0>=x>=1
{3-x 1>=x>=3
I am unsure how to make the function periodic with period 3 for all x? the code is:
f = @(x) ((2*sqrt(x)).*(and(0<=x,x<=1)) + (3-x).*(and(1<x,x<=3)));
x=0:0.01:3;
plot(x,f(x))
any help would be much appreciated! Thanks
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Numerical Integration and Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!