odd and even functions
32 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Voss
2022-5-6
One thing you can do is to plot the function and visually inspect it:
f = @(x)0.5*(sin(x)+abs(sin(x)));
fplot(f,[-pi pi])
It doesn't look even or odd.
You could also evaluate the function at some values of x and -x and compare the results:
x = -pi:0.1:pi;
is_even = isequal(f(x),f(-x))
is_odd = isequal(f(x),-f(-x))
(A sanity check with functions known to be odd or even)
f = @(x)sin(x);
is_even = isequal(f(x),f(-x))
is_odd = isequal(f(x),-f(-x))
f = @(x)cos(x);
is_even = isequal(f(x),f(-x))
is_odd = isequal(f(x),-f(-x))
更多回答(1 个)
David Hill
2022-5-6
x=-pi:.001:pi;
f=@(x).5*(sin(x)+abs(sin(x)));
if isequal(f(x),f(-x))
even_odd=2;%even
elseif isequal(-f(x),f(-x))
even_odd=1;%odd
else
even_odd=0;%neither
end
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!