Find the number of rows and columns of non-zero number from certain row.

1 vue (au cours des 30 derniers jours)
fyza affandi
fyza affandi le 28 Nov 2018
Commenté : fyza affandi le 28 Nov 2018
Given a matrix named Matr below;
Matr =
0 0
0 0
1 0
0 0
2 0
0 1
1 1
How can I find the number of column and row form beginning of row to only row 6?
The result should be
[3 1
5 1
6 2]

Réponse acceptée

YT
YT le 28 Nov 2018
You can do something like this
[r, c] = find(Matr(1:6,:));
res = [r c]
%res =
%
% 3 1
% 5 1
% 6 2

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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