Find the number of rows and columns of non-zero number from certain row.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
fyza affandi
am 28 Nov. 2018
Kommentiert: fyza affandi
am 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]
0 Kommentare
Akzeptierte Antwort
YT
am 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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!