i have Grid points and its coordinate x, y, z. I want to find out Grid point given x, y and z.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Pappu Murthy
am 6 Okt. 2016
Kommentiert: Pappu Murthy
am 7 Okt. 2016
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 Kommentare
Akzeptierte Antwort
KSSV
am 7 Okt. 2016
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);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interpolation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!