finding the columns include ones
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sermet
am 6 Jan. 2024
Beantwortet: madhan ravi
am 6 Jan. 2024
matrix=[1 0 0 1 0;0 1 0 1 0];
% I need to find the number of column includes [1;1]
index_1 = 4 ;
% how can I find this using code or function?
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 6 Jan. 2024
index = find(all(matrix)) % one can directly use logical indexing without find() function
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!