Tagged Questions

interpolation is a method of constructing new data points within the range of a discrete set of known data points

learn more… | top users | synonyms

23
votes
3answers
483 views

How can you produce sharp paint results when rotating a BufferedImage?

One attempted approach was to use TexturePaint and g.fillRect() to paint the image. This however requires you to create a new TexturePaint and Rectangle2D object each time you paint an image, which ...
17
votes
7answers
6k views

Generate colors between red and green for a power meter?

I'm writing a java game and I want to implement a power meter for how hard you are going to shoot something. I need to write a function that takes a int between 0 - 100, and based on how high that ...
10
votes
2answers
4k views

Inverse Distance Weighted (IDW) Interpolation with Python

The Question: What is the best way to calculate inverse distance weighted (IDW) interpolation in Python, for point locations? Some Background: Currently I'm using RPy2 to interface with R and it's ...
9
votes
4answers
216 views

Locate triangle containing arbitrary point in Delaunay-triangulated surface

I'm looking to do a linear interpolation of a irregularly sampled function z(x,y) based on a Delaunay triangulation. Say I have a hill for which I have obtained a Delaunay triangulation: I know ...
9
votes
10answers
394 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 interpolated. However, in ...
9
votes
5answers
2k views

Math - mapping numbers

How do I map numbers, linearly, between a and b to go between c and d. That is, I want numbers between 2 and 6 to map to numbers between 10 and 20... but I need the generalized case. My brain is ...
8
votes
6answers
491 views

Interpolating Large Datasets On the Fly

Interpolating Large Datasets I have a large data set of about 0.5million records representing the exchange rate between the USD / GBP over the course of a given day. I have an application that ...
8
votes
2answers
3k views

Texture mapping in MATLAB

I have points in 3D space and their corresponding 2D image points. How can I make a mesh out of the 3D points, then texture the triangle faces formed by the mesh? Update See answer
8
votes
4answers
2k 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 each point will ...
8
votes
4answers
11k 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 find the algorithm ...
8
votes
2answers
5k views

Cubic/Curve Smooth Interpolation in C#

Below is a cubic interpolation function: public float Smooth(float start, float end, float amount) { // Clamp to 0-1; amount = (amount > 1f) ? 1f : amount; amount = (amount < 0f) ? ...
7
votes
4answers
216 views

mathematica large table periodic interpolation

I have a very large table in mathematica ((dimcub-1)^3 elements) coming from an inverse FFT. I need to use periodic interpolation on this table. Since periodic interpolation requires that the first ...
7
votes
3answers
713 views

In Mathematica, what interpolation function is ListPlot using?

[Screenshot below] I was using ListPlot to draw a smooth line through some data points. But I want to be able to work with the 1st and 2nd derivative of the plot, so I thought I'd create an actual ...
7
votes
3answers
848 views

Algorithm for 2D Interpolation

I have two shapes which are cross sections of a channel. I want to calculate the cross section of an intermediate point between the two defined points. What's the simplest (relatively simple?) ...
7
votes
5answers
14k views

Interpolating data points in Excel

I'm sure this is the kind of problem other have solved many times before. A group of people are going to do measurements (Home energy usage to be exact). All of them will do that at different times ...
7
votes
4answers
1k views

Double interpolation of regular expressions in Perl

I have a Perl program that stores regular expressions in configuration files. They are in the form: regex = ^/d+$ Elsewhere, the regex gets parsed from the file and stored in a variable - $regex. I ...
7
votes
5answers
4k views

In Ruby, can you perform string interpolation on data read from a file?

In Ruby you can reference variables inside strings and they are interpolated at runtime. For example if you declare a variable foo equals "Ted" and you declare a string "Hello, #{foo}" it ...
7
votes
7answers
3k views

Color scaling function

I am trying to visualize some values on a form. They range from 0 to 200 and I would like the ones around 0 be green and turn bright red as they go to 200. Basically the function should return color ...
6
votes
4answers
178 views

How to perform bilinear interpolation in Python

I would like to perform blinear interpolation using python. Example gps point for which I want to interpolate height is: B = 54.4786674627 L = 17.0470721369 using four adjacent points with known ...
6
votes
2answers
165 views

Interpolate NA values

I have two set of samples that are time independent. I would like to merge them and calculate the missing values for the times where I do not have values of both. Simplified example: A <- ...
6
votes
3answers
326 views

Interpolate NaN values in a numpy array

Is there a quick way of replacing all NaN values in a numpy array with (say) the linearly interpolated values? For example, [1 1 1 nan nan 2 2 nan 0] would be converted into [1 1 1 1.3 1.6 2 2 ...
6
votes
4answers
916 views

Interpolation in PHP

I'm looking for a function in PHP for interpolating a set of irregular placed data (x,y,z) to a gridded data set for using it in ContourPlot function in JPGraph. I've developed a function based on ...
6
votes
4answers
2k views

How do you do bicubic (or other non-linear) interpolation of re-sampled audio data?

I'm writing some code that plays back WAV files at different speeds, so that the wave is either slower and lower-pitched, or faster and higher-pitched. I'm currently using simple linear ...
6
votes
3answers
3k views

Drawing hermite curves in OpenGL

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 any built in functions? I ...
6
votes
3answers
1k views

Data storage to ease data interpolation in Python

I have 20+ tables similar to table 1. Where all letters represent actual values. Table 1: $ / cars |<1 | 2 | 3 | 4+ <10,000 | a | b | c | d 20,000 | e | f | g | h 30,000 | i | j | k | l ...
6
votes
6answers
2k views

Interpolation algorithms when downscaling

Im trying to understand downscaling. I can see how interpolation algorithms such as bicubic and nearest neighbour can be used when when upscaling, to "fill in the blanks" between the old, known points ...
6
votes
4answers
2k views

Fade a color to white (increasing brightness)

I want to make a text box in .NET "glow" yellow, and then "fade" to white (basically, by incrementally increasing the brightness). I think Stackoverflow does this after you've posted an answer. I know ...
5
votes
1answer
113 views

What mathematical methods work for interpolation 2d to 2d functions?

So we have a matrix like 12,32 24,12 ... with length 2xN and another 44,32 44,19 ... with length 2xN and there is some function f(x, y) that returns z[1], z[2]. That 2 matrices that we were ...
5
votes
1answer
290 views

2D Interpolation of Large Irregular Grid to Regular Grid

I have 2048x2048 mesh of irregular data zi = f(xi, yi) which are essentially three independent sets of 2048 real values. I need to smoothly interpolate (perhaps bicubic spline) that into a regular ...
5
votes
2answers
110 views

How to save a bitmap after setting interpolation with graphics class

This code resizes an image and saves it to disk. using (var medBitmap = new Bitmap(fullSizeImage, newImageW, newImageH)) { ...
5
votes
1answer
156 views

Identify Mathematica interpolation functions from graphs (not Hermite)

I'm reverse-engineering how Mathematica does list interpolation: (* Fortunately, Mathematica WILL interpolate an arbitrary list *) tab = Table[a[i], {i,1,100}] f = Interpolation[tab] (* get ...
5
votes
1answer
768 views

Sparse Matrix Interpolation With MATLAB

If I have a matrix like this A = [1 2; 3 4]; I can use interp2 to interpolate it like this newA = interp2(A,2); and I get a 5x5 interpolated matrix. But what if I have a matrix like this: B = ...
5
votes
3answers
246 views

Is there a simple way to compute a “smooth” function with the following characteristics in C/C++?

In order to specify some things first: The user should be able to create a graph by specifying 3 to 5 points on a 2D field. The first and the last points are always at the bounds of that field (their ...
5
votes
1answer
680 views

Implementing semi-implicit backward Euler in a 1-DOF mass-spring system

I have a simple (mass)-spring system wih two points which are connected with a spring. One point is fixed at a ceiling, so I want to calculate the position of the second point using a numerical ...
5
votes
2answers
2k views

Math: Ease In, ease Out a displacement using Hermite curve with time constraint

I'm trying to write a method that interpolates from 0 to x (position of an object in one dimension) over time using acceleration at the beginning and deceleration at the end (ease out / ease in) with ...
5
votes
3answers
385 views

Stretching out an array

I've got a vector of samples that form a curve. Let's imagine there are 1000 points in it. If I want to stretch it to fill 1500 points, what is the simplest algorithm that gives decent results? I'm ...
5
votes
5answers
405 views

Is there a Java data structure that is effectively an ArrayList with double indicies and built-in interpolation?

I am looking for a pre-built Java data structure with the following characteristics: It should look something like an ArrayList but should allow indexing via double-precision rather than integers. ...
5
votes
1answer
1k views

How do I escape Ruby string interpolation?

Given this code: has_many :foos, :finder_sql = <<-SQL select * from foos where bars = #{id} SQL The #{id} part is being prematurely interpolated. How do I escape it?
5
votes
3answers
975 views

Interpolating a scalar field in a 3D space

I have a 3D space (x, y, z) with an additional parameter at each point (energy), giving 4 dimensions of data in total. I would like to find a set of x, y, z points which correspond to an iso-energy ...
5
votes
3answers
1k views

Interpolation in SciPy: Finding X that produces Y

Is there a better way to find which X gives me the Y I am looking for in SciPy? I just began using SciPy and I am not too familiar with each function. import numpy as np import matplotlib.pyplot as ...
5
votes
4answers
1k views

SQL Server view: how to add missing rows using interpolation

Running into a problem. I have a table defined to hold the values of the daily treasury yield curve. It's a pretty simple table used for historical lookup of values. There are notibly some gaps in ...
4
votes
1answer
97 views

How do I get the slopes of an interpolation at regular time points on a cumulative sum plot?

Over at cross validated I asked a question about analyzing data by date but not wanting to generate spurious spikes and troughs by binning data by the month. For example if one pays a bill on the last ...
4
votes
2answers
115 views

Interpolation of satellite image with overlapping areas

I am having a problem with interpolation of the satellite images. I understand how the satellite taking image of the earth: and I am trying to perform an interpolation by using following code: ...
4
votes
2answers
153 views

Interpolation in mathematica

Please consider the following distribution : rs={{400, 0.00929}, {410, 0.0348}, {420, 0.0966}, {430, 0.2}, {440, 0.328}, {450, 0.455}, {460, 0.567}, {470, 0.676}, {480, 0.793}, {490, 0.904}, ...
4
votes
2answers
182 views

Aiming Calculation at Tower-Defense

I'm building a little tower-defense game with some friends in Java. Now I'm assigned with the logic for towers and at the moment I'm trying to figure out how a tower has to turn to aim and hit a ...
4
votes
3answers
164 views

Interpolate NA values in a data frame with na.approx

I am trying to remove NAs from my data frame by interpolation with na.approx() but can't remove all of the NAs. My data frame is a 4096x4096 with 270.15 as flag for non valid value. I need data to be ...
4
votes
3answers
163 views

Why doesn't Perl support interpolation of hashes in double quotes?

#!/usr/bin/perl use warnings; my %hash=("no1"=>1, "no2"=>2, ); print %hash; #Prints no11no22 print "%hash"; #Prints %hash Why doesn't Perl support interpolation of a hash ...
4
votes
2answers
735 views

Multivariate spline interpolation in python/scipy?

Is there a library module or other straightforward way to implement multivariate spline interpolation in python? Specifically, I have a set of scalar data on a regularly-spaced three-dimensional grid ...
4
votes
2answers
356 views

Warping an image based on lines given with different orientations

I would like to warp an image based on lines given with different orientations: for each line on the input image, I can get the coordinates of the pixels on the line then I would map these pixels to ...
4
votes
1answer
134 views

How to perform a checkerboard-interpolation in matlab?

I have two matrices A and B containing values for a checkerboard/chessboard-like grid of the form AxAxAxAx... xBxBxBxB... AxAxAxAx... xBxBxBxB... ........... ........... Where x represents values ...

1 2 3 4 5 7