How to determine the position of an integer
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I have a very basic question. I have a variable containing 5 numbers, say for eg,
d= [1 4 3 2 5]
how can i find the position of the number 3 in this d. I tried to use Find but I think I am using it wrong . Can anyone help me out please.
Thanks,
Vivekram
댓글 수: 0
채택된 답변
추가 답변 (2개)
Jim O'Doherty
2013년 5월 9일
Hi Vivekram,
I'd sugget using the "unique" command
[C, ia, ic]=unique(d)
ic will give you the indices of the numbers in your array d
Jim
Grzegorz Knor
2013년 5월 9일
편집: Grzegorz Knor
2013년 5월 9일
If the values are in the cell format use cell2mat function:
pos = find(cell2mat(d)==3)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!