简体   繁体   中英

how to find the corresponding point in other row of an array in matlab?

i have an array lets say

x =

 1     2     2
 5     8     7

now i want to get the corresponding values of a number in 2nd row. like i have number =2

and i want

ans= 8 and 7

as 8 and 7 are the corresponding points for 2.

X(2,X(1,:)==2)

should do. Hope you can figure out how.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM