Plot intervall function in Matlab
3 次查看(过去 30 天)
显示 更早的评论
Hi, how can I plot this function, with even and odd parts?
0 个评论
回答(1 个)
Abderrahim. B
2022-8-31
Hi!
Use piecewise and fplot.
syms t
xThree = piecewise( t <= 2 ,1 ,(t > 2) & (t <= 4), t-2, t >= 4, 1)
fplot(xThree)
Hope this helps
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!