how can I do this in mat lab

2 visualizzazioni (ultimi 30 giorni)
Shouq A
Shouq A il 6 Apr 2020
Commentato: Shouq A il 6 Apr 2020
how can i type this equation in matlab x(t)= cos(πt)[u(t) − u(t − 1)] and h(t) = 1.5[u(t) − u(t − 1.5)] ???

Risposta accettata

Birdman
Birdman il 6 Apr 2020
syms u(t) x(t) h(t)
u(t)=piecewise(t>=0,1,0);
x(t)=cos(pi*t)*(u(t)-u(t-1));
h(t)=1.5*(u(t)-u(t-1.5));
%%plot
t=0:0.001:5;
plot(t,x(t),t,h(t));legend('x(t)','h(t)')

Più risposte (0)

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by