2
votes
4answers
60 views
How do I generate a contour graph?
How do I generate a contour graph like this:
It's easy enough if the points are on a regular grid, but what if they aren't, like in my example? Is there a fairly simple algorithm …
6
votes
10answers
162 views
Are there any drawbacks to interpolation in Perl?
I'm just starting out with Perl (literally today) and I'm reading the free online version of Beginning Perl. Early on, the book mentioned that double quoted strings will be interpo …
1
vote
2answers
61 views
How to use linear interpolation estimate current position between two Geo Coordinates?
I have the following available:
last reported lat,lon w/timestamp
target lat,lon
estimated time to target
heading
How can I interpolate an estimated position over time?
I know …
2
votes
1answer
47 views
Mathematica Interpolation Engine - What does mathematica use for it? [closed]
Anyone has knows what might be the algorithm behind it's ListPlot3D interpolation engine?
1
vote
1answer
37 views
Interpolation of data points at the end points of a data set
Hi!
From scipy I am using the interpolate.splrep and interpolate.splev functions to get interpolate my data set. Unsurprisingly, this does not work very well if I try to get an in …
5
votes
4answers
144 views
How Do I Generate a 3-D Surface From Isolines?
I have a set of isoline points (or contour points) such as this:
Each point on an isoline has its own respective X, Y, and Z coordinate. Since they are isolines, that means that …
0
votes
1answer
49 views
Javascript function for trilinear interpolation
All,
I THINK that I'm looking for a function for Trilinear interpolation.
Here's the details:
I have a three dimensional dataset:
Dimension 1 varies from 0 to 100 in increment …
1
vote
1answer
130 views
OpenGL ES on Iphone: simple 2D animation (interpolation/tween)
Hi everyone,
I'm working on an app that basically revolves around 2D shapes (mostly simple polygons) being dynamically drawn and animated.
I'm looking for a way to easily time my …
4
votes
3answers
411 views
Drawing hermite curves in OpenGL
Hi,
I am a beginner, started learning openGL from the Red book since last week. i have a question regarding Hermite curves, how can I draw Hermite curves using OpenGL, are there a …
2
votes
4answers
468 views
Nearest-neighbor interpolation algorithm in MATLAB
I am trying to write my own function for scaling up an input image by using the Nearest-neighbor interpolation algorithm. The bad part is I am able to see how it works but cannot f …
0
votes
0answers
39 views
SQL Interpolation: Cubic / Quartic
Hi,
Can anyone point me in the direction of an SQL cubic or quartic interpolation function? I'm trying to save the time of a developer at work coding a Crystal Report and I'm keen …
2
votes
2answers
76 views
What is the safest way to initialize bash arrays with quoted values from function output?
I prefer to program my bash scripts to be as procedural as possible. One difficulty I've encountered in trying to do so happens when passing array data between functions, a task t …
-2
votes
1answer
52 views
rescaling ranges
hi, for example i have two ranges
(1) 0 to 3
(2) 10 to 15
in range (1) i have numbers between 0 and 3, where 0 is minimum and 3 is …
2
votes
2answers
131 views
Interpolation advice (linear, cubic?)
I need to find good approximations of the points where an undefined function intersect a threshold value. I'm stepping through my space and whenever I find that two subsequent step …
2
votes
6answers
303 views
Interpolation on excel
Hi to all
I've a source data like this:
35 40
-15 15.0 15.1
-10 17.2 17.4
-5 19.7 19.8
and I need to find the value in (-16, 37). I've tried with linear …
