Azzera filtri
Azzera filtri

How do I code to input x[n]signal to -1 or 1 for 0<n<10000 (arbitary output) digital signal processing Matlab

2 visualizzazioni (ultimi 30 giorni)
plz i can send you some bitcoin
  2 Commenti
Sung Hun Park
Sung Hun Park il 1 Giu 2020
so,
i make input x[n] data (1or -1) for random 10000 data.
some impulse response h[n] (low pass filter) i use
and i will find output y[n]
and i want to know how to make those things and some useful code...
thanks

Accedi per commentare.

Risposte (1)

Nikhil Sonavane
Nikhil Sonavane il 1 Giu 2020
You can use the following code-
N=10000;
x=randi([0,1],N,1);
for i=1:N
if (x(i)==0)
x(i)=-1;
end
end

Categorie

Scopri di più su Get Started with DSP System Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by