how to plot red of the matrix

1 view (last 30 days)
nu
nu on 3 Dec 2013
Answered: nu on 3 Dec 2013
a = [1 1 0; 0 0 0; 0 0 1;]; idx = find(a==1); % linear coordinates [I,J] = ind2sub(size(a),idx);
how to plot red the result of find..?

Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 3 Dec 2013
Edited: Azzi Abdelmalek on 3 Dec 2013
a = [1 1 0; 0 0 0; 0 0 1;];
[I,J]=find(a==1)
scatter(I,J)

nu
nu on 3 Dec 2013
i mean the result 1 is change into red. and using a plot..?

Tags

Community Treasure Hunt

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

Start Hunting!