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!