function periodic in matlab

4 vues (au cours des 30 derniers jours)
ali akhavan
ali akhavan le 29 Oct 2021
i have a function (f=x^2 for -pi/2<=x<=pi/2) and i want to make this function periodic , how i can do it?

Réponses (1)

the cyclist
the cyclist le 29 Oct 2021
I think this does what you want:
x = -3*pi : 0.01 : 3*pi;
f = @(x) (mod(x+pi/2,pi) - pi/2).^2;
figure
plot(x,f(x))

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by