Azzera filtri
Azzera filtri

how to solve this error

3 visualizzazioni (ultimi 30 giorni)
ahmad ramadan
ahmad ramadan il 2 Nov 2018
Commentato: madhan ravi il 2 Nov 2018
i want to sample the function at fs=10,000
i have this code when i run it i get error
t=0:1/50e3:10e-3;
d=[0:1/1e3:10e-3;0.8.^(0:10)];
x2=pulstran(t,d,'pulse',10e3,0.1);
figure(44)
plot(t,x2);
  3 Commenti
Matt J
Matt J il 2 Nov 2018
That doesn't look like a complete error message. No information about what caused it.
madhan ravi
madhan ravi il 2 Nov 2018
Please don’t close question which has answer

Accedi per commentare.

Risposte (1)

KSSV
KSSV il 2 Nov 2018
You need to transpose d and use as input.
t=0:1/50e3:10e-3;
d=[0:1/1e3:10e-3;0.8.^(0:10)]';
x2=pulstran(t,d,'pulse',10e3,0.1);
figure(44)
plot(t,x2);

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by