Convert numerical Matrix values into logical Matrix
Show older comments
Hi...im very new to Matlab,but was hoping i could get an answer to this....If i have a Matrix of N x M, of a set of values like below.How do i get a new logical Matrix.The logical values correspond to the column number,which are also the A values.
input
A = [1 3 4 9 12
2 5 6 9 11
1 4 5 10 12]
output 1 2 3 4 5 6 7 8 9 10 11 12
1 0 1 1 0 0 0 0 1 0 0 1
0 1 0 0 1 1 0 0 1 0 1 0
1 0 0 1 1 0 0 0 0 1 0 1
Thank you.
Accepted Answer
More Answers (0)
Categories
Find more on Operating on Diagonal Matrices 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!