how to plot red of the matrix
Afficher commentaires plus anciens
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..?
Réponses (2)
Azzi Abdelmalek
le 3 Déc 2013
Modifié(e) : Azzi Abdelmalek
le 3 Déc 2013
a = [1 1 0; 0 0 0; 0 0 1;];
[I,J]=find(a==1)
scatter(I,J)
nu
le 3 Déc 2013
0 votes
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!