how to right math functions

1 Ansicht (letzte 30 Tage)
Abdulelah AlQahtani
Abdulelah AlQahtani am 8 Mai 2023
Beantwortet: Sam Chak am 8 Mai 2023
how can I define u(t) for the domain of t. To put in in M-file
  2 Kommentare
Torsten
Torsten am 8 Mai 2023
u or u' ?
Abdulelah AlQahtani
Abdulelah AlQahtani am 8 Mai 2023
u'

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Torsten
Torsten am 8 Mai 2023
Bearbeitet: Torsten am 8 Mai 2023
us = @(t) 4*(t>=0 & t<5) + 2*(t>=5);
t = -10:0.1:10;
plot(t,us(t),'r')

Sam Chak
Sam Chak am 8 Mai 2023
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])

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by