Is there a way to show the binary matrix b as points (say using scatter or a similar command) so I can see individual 1 and 0 values corresponding to different rows and columns with different colors for 0s and 1s similar to imagesc?
For instance the following script generates
a=rand(6,5);
b = a > 0.5;
imagesc(b);colorbar;
0 Comments
Sign in to comment.