Effacer les filtres
Effacer les filtres

transform column and row data of logical matrix to vector(N X 2)

1 vue (au cours des 30 derniers jours)
sunghyun chung
sunghyun chung le 19 Nov 2019
Commenté : Ridwan Alam le 19 Nov 2019
Hello
I would like to transfrom column and row data of logical matrix
to
vector matrix (N X 2)
eg.
** logical matrix
0 0 0 0
0 1 0 0
0 0 0 0
0 0 1 0
0 1 0 1
**to vector matrix (N X 2)
2 2
3 3
5 2
5 4
is there function to perform upper task?
thank you

Réponse acceptée

Ridwan Alam
Ridwan Alam le 19 Nov 2019
Modifié(e) : Ridwan Alam le 19 Nov 2019
logical_matrix = [0 0 0 0; 0 1 0 0; 0 0 0 0; 0 0 1 0; 0 1 0 1];
[i,j] = find(logical_matrix);
vector_matrix = [i,j]
% vector_matrix =
%
% 2 2
% 5 2
% 4 3
% 5 4

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by