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

1 view (last 30 days)
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]

Accepted Answer

YT
YT on 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

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!