Return interpolated coordinate in 3d

3 vues (au cours des 30 derniers jours)
Joel Poder
Joel Poder le 11 Fév 2017
Commenté : Joel Poder le 11 Fév 2017
I have two 3D coordinates, e.g. x1,y1,z1 = 1,1,1 and x2,y2,z2 = 10,11,12 I would like to interpolate between these two coordinates and return the values of the coordinate at a specific plane, e.g. y=5

Réponse acceptée

Stephen23
Stephen23 le 11 Fév 2017
Modifié(e) : Stephen23 le 11 Fév 2017
>> p1 = [1,1,1];
>> p2 = [10,11,12];
>> M = [p1;p2];
>> interp1(M(:,2),M,5)
ans =
4.6 5 5.4

Plus de réponses (0)

Catégories

En savoir plus sur Interpolation dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by