search an array and find the row and column number of a certain element
조회 수: 3 (최근 30일)
이전 댓글 표시
I have an array with a variety of elements. I want to search this array and find the element "P" and assign the column number and row number to variables. How would i go about doing this?
댓글 수: 0
채택된 답변
Fulden Buyukozturk
2018년 11월 2일
Let's assume you have the following array:
myArray = {'an' 'example' 'p'};
You can use find to obtain indices where the input evaluates to true:
[a,b] = find(strcmp('p', myArray));
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!