Converting 0 to -1, not working in function
古いコメントを表示
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
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Signal Attributes and Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!