Converting 0 to -1, not working in function
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Signal Attributes and Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!