Filter löschen
Filter löschen

Triangle Interpolation: Find Exact Value

2 Ansichten (letzte 30 Tage)
Riccardo Mari
Riccardo Mari am 4 Nov. 2022
Kommentiert: Riccardo Mari am 7 Nov. 2022
Hi everyone,
I have a triangle with vertices:
coordinates=[0.397500000000000,0.402500000000000,0.400000000000000;0.615285115251741,0.615285115251741,0.619615242270663];
and i know the temperature on each of them:
temperature=[1.228022937634222e+02;1.228022937634234e+02;6.798453477959490e+02];
I would like to find the coordinates of some points (equally spaced including the two on the sides) that have a fixed value of temperature. Let's suppose:
Tfixed=650;
Is there a way to do this?
The same thing must be done on an arbitraty traingle with vertices that could not be symmetric.
Thanks in advance for the reply.

Akzeptierte Antwort

Daniel Neubauer
Daniel Neubauer am 4 Nov. 2022
your 2D-triangle with temperature can be treated as a 3d plane defined by the three points in [x y z] such as
vertex=[x y t]
then calculate the equation for the resulting 3d plane and set equal to z=Tfixed.
the resulting line is the equation of all points having the desired temperature.
  2 Kommentare
John D'Errico
John D'Errico am 4 Nov. 2022
... and the intersection of that line with the edges of the triangle will produce the desired interpolated points along the edges.
Riccardo Mari
Riccardo Mari am 7 Nov. 2022
Thank you both for the idea! That worked perfectly.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by