How do I code to input x[n]signal to -1 or 1 for 0<n<10000 (arbitary output) digital signal processing Matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
plz i can send you some bitcoin
2 comentarios
Respuestas (1)
Nikhil Sonavane
el 1 de Jun. de 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
2 comentarios
Ver también
Categorías
Más información sobre Filter Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!