Binary value convert.

2 views (last 30 days)
Noman Abir
Noman Abir on 2 Jan 2021
Commented: Ameer Hamza on 2 Jan 2021
I have a binary bit sequence A = [0 1 0 1;1 0 0 1; 0 0 0 1; 1 0 0 1]; How can i convert all the 0 values into -1.??
The final output will become as A = [-1 1 -1 1;1 -1 -1 1;-1 -1 -1 1;1 -1 -1 1];

Accepted Answer

Ameer Hamza
Ameer Hamza on 2 Jan 2021
Read about logical indexing
A = [0 1 0 1;1 0 0 1; 0 0 0 1; 1 0 0 1];
A(A==0) = -1;
  3 Comments
Image Analyst
Image Analyst on 2 Jan 2021
Offline private consulting is not usually done. Why can't you continue to get help here in the Answers forum, where everyone can benefit from the questions and answers?
Ameer Hamza
Ameer Hamza on 2 Jan 2021
Yes, it is better to post your question on this forum so that you have a better chance of getting any help, and the answers will also be helpful for others.

Sign in to comment.

More Answers (0)

Categories

Find more on Video games in Help Center and File Exchange

Tags

Products


Release

R2014b

Community Treasure Hunt

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

Start Hunting!