Azzera filtri
Azzera filtri

Even and odd part of function

12 visualizzazioni (ultimi 30 giorni)
FEDERICO RODELLA
FEDERICO RODELLA il 14 Nov 2022
Commentato: FEDERICO RODELLA il 14 Nov 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?

Risposta accettata

Matt J
Matt J il 14 Nov 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 Commenti
Matt J
Matt J il 14 Nov 2022
Modificato: Matt J il 14 Nov 2022
You are quite welcome, but please Accept-click the answer if your question is resolved.
FEDERICO RODELLA
FEDERICO RODELLA il 14 Nov 2022
Ok sorry 😅

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by