Even and odd part of function
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I have to find the even and the odd part of this function, and plot them.
I do this
syms t
y = piecewise(1 < t < 3, t-1, 0);
fplot(y)
and then?
0 件のコメント
採用された回答
Matt J
2022 年 11 月 14 日
syms t
y = symfun( piecewise(1 < t < 3, t-1, 0) ,t);
yeven=(y(t)+y(-t))/2
fplot(yeven)
and similarly for the odd part.
3 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!