search an array and find the row and column number of a certain element
3 ビュー (過去 30 日間)
古いコメントを表示
Ross Anderson
2018 年 11 月 2 日
回答済み: Fulden Buyukozturk
2018 年 11 月 2 日
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!