how to plot red of the matrix

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..?

回答(2 个)

a = [1 1 0; 0 0 0; 0 0 1;];
[I,J]=find(a==1)
scatter(I,J)
nu
nu 2013-12-3

0 个投票

i mean the result 1 is change into red. and using a plot..?

类别

帮助中心File Exchange 中查找有关 Scatter Plots 的更多信息

标签

提问:

nu
2013-12-3

回答:

nu
2013-12-3

Community Treasure Hunt

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

Start Hunting!

Translated by