Kevin Dressel
2006-04-11 03:18:20 UTC
Hey all!
First off, let me apologize for cross-posting, but I'm hoping someone in
these groups can help me out a bit.
I am looking for a way to perform (efficient) interpolation as follows:
Given a set of points with associated coordinates (more than three
dimensions):
a(q,r,s,t,u,v,....)
b(q1,r1,s1,t1,u1,v1,....)
c(q2,r2,s2,t2,u2,v2,....)
d(q3,r3,s3,t3,u3,v3....)
.
.
.
.
and so on, each being equal to some value (i.e., a(q,r,s,t,u,v,....) =
5, b() = 23, etc.), how could I interpolate to solve for point
x(qx,rx,sx,tx,ux,vx,....)?
The problem I am dealing with is a case where each point above is a
summed discrete load derived from individual loads (q,r,s,t,u,v...) that
are multiplied by unique coefficients, i.e. discrete load = q * coef_q +
r * coef_r + s * coef_s + ..... I need to solve for the discrete load
for a point x, in which the unique coefficients are not known.
I've read a bit about Delaunay triangulation techniques, but am still
not certain if it's what I want (or how to implement for that matter).
Primarily, I would like to find a way to interpolate to achieve the
greatest accuracy, which, for the sake of example, would be like taking
the three closest points out of the set of knowns to the unknown point
which also encompasses it.
Any ideas?
Thanks a lot in advance!
Kevin
First off, let me apologize for cross-posting, but I'm hoping someone in
these groups can help me out a bit.
I am looking for a way to perform (efficient) interpolation as follows:
Given a set of points with associated coordinates (more than three
dimensions):
a(q,r,s,t,u,v,....)
b(q1,r1,s1,t1,u1,v1,....)
c(q2,r2,s2,t2,u2,v2,....)
d(q3,r3,s3,t3,u3,v3....)
.
.
.
.
and so on, each being equal to some value (i.e., a(q,r,s,t,u,v,....) =
5, b() = 23, etc.), how could I interpolate to solve for point
x(qx,rx,sx,tx,ux,vx,....)?
The problem I am dealing with is a case where each point above is a
summed discrete load derived from individual loads (q,r,s,t,u,v...) that
are multiplied by unique coefficients, i.e. discrete load = q * coef_q +
r * coef_r + s * coef_s + ..... I need to solve for the discrete load
for a point x, in which the unique coefficients are not known.
I've read a bit about Delaunay triangulation techniques, but am still
not certain if it's what I want (or how to implement for that matter).
Primarily, I would like to find a way to interpolate to achieve the
greatest accuracy, which, for the sake of example, would be like taking
the three closest points out of the set of knowns to the unknown point
which also encompasses it.
Any ideas?
Thanks a lot in advance!
Kevin