how to right math functions

Risposte (2)

Torsten
Torsten il 8 Mag 2023
Modificato: Torsten il 8 Mag 2023
us = @(t) 4*(t>=0 & t<5) + 2*(t>=5);
t = -10:0.1:10;
plot(t,us(t),'r')
For simplicity, the signal can be defined like this.
t = linspace(-5, 10, 15001);
u1 = 0*(t <= 0);
u2 = 4*(t > 0 & t <= 5);
u3 = 2*(t > 5);
u = u1 + u2 + u3;
plot(t, u), grid on, ylim([-0.5 4.5])

Categorie

Risposto:

il 8 Mag 2023

Community Treasure Hunt

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

Start Hunting!

Translated by