x(t) = 2*u((-t/4)+2), |t|<=10
Mostra commenti meno recenti
I want to plot the above equation in matlab but i dont know how to plot please help or provide me code
Risposta accettata
Più risposte (1)
Ibrahem Ahmed
il 16 Mar 2021
0 voti
u = @(x) 1*(x>=0); t = -10:0.01:10; x = 2*u(-t/4+2); plot(t, x)
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!