finding the columns include ones
조회 수: 1 (최근 30일)
이전 댓글 표시
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
채택된 답변
madhan ravi
2024년 1월 6일
index = find(all(matrix)) % one can directly use logical indexing without find() function
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!