Converting 0 to -1, not working in function
Mostrar comentarios más antiguos
Hello,
I am working on a simple indexing problem where I have an array of random binary data. I simply want to convert the 0's to -1's and I am using the following code to do that:
if true
bpsk = signal;
bpsk( signal==0 )= -1;
end
where signal is my binary data. So this works fine in the command window but when I stick this code into a function bpsk is all 1's after the indexing. Any thoughts?
Thanks, Micah
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Signal Attributes and Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!