Even and odd part of function

3 visualizaciones (últimos 30 días)
FEDERICO RODELLA
FEDERICO RODELLA el 14 de Nov. de 2022
Comentada: FEDERICO RODELLA el 14 de Nov. de 2022
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?

Respuesta aceptada

Matt J
Matt J el 14 de Nov. de 2022
syms t
y = symfun( piecewise(1 < t < 3, t-1, 0) ,t);
yeven=(y(t)+y(-t))/2
yeven = 
fplot(yeven)
and similarly for the odd part.
  3 comentarios
Matt J
Matt J el 14 de Nov. de 2022
Editada: Matt J el 14 de Nov. de 2022
You are quite welcome, but please Accept-click the answer if your question is resolved.
FEDERICO RODELLA
FEDERICO RODELLA el 14 de Nov. de 2022
Ok sorry 😅

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by