How to interpolate values
Afficher commentaires plus anciens
Hello. I have the question about how would you interpolate some values. For example, I have:
x y z
1 4 7
3 6 9
I want a point between (1,4) and (3,6) with the mean value of z.
Thank you in advanced!!
4 commentaires
Jan
le 7 Mar 2013
This is not clear. What is "a point between (1,4) and (3,6)"?
chaos4u2
le 7 Mar 2013
Matt Kindig
le 7 Mar 2013
Do you just mean that you want the mean of the x, y, and z coordinates? If so, your middle point would simply be
mid = mean([x, y, z], 1);
Or are you asking something else?
chaos4u2
le 7 Mar 2013
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Interpolation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!