i have Grid points and its coordinate x, y, z. I want to find out Grid point given x, y and z.
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a set of Grid Points 1 thru N, and each has coordinated x, y and z.
Now I like to know how to get the Grid point number given x, y and z.
댓글 수: 0
채택된 답변
KSSV
2016년 10월 7일
Let A be your coordinates of size Nx2 and P be the point to seek the nodal number.
n = find(ismember(A,P,'rows'),1);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!