Tagged Questions
The interpolate tag has no wiki summary.
5
votes
2answers
842 views
Finding the length of a cubic B-spline
Using scipy's interpolate.splprep function get a parametric spline on parameter u, but the domain of u is not the line integral of the spline, it is a piecewise linear connection of the input ...
5
votes
4answers
2k views
How to render a smooth path given a set of data points?
I've been puzzling over path rendering for the past couple of days without any real solution.
By path rendering I mean given a set of x,y data points (at varying distance) to draw a dashed line (or ...
4
votes
1answer
703 views
Python/Scipy Interpolation (map_coordinates)
I'm trying to do some interpolation with scipy. I've gone through many examples, but I'm not finding exactly what I want.
Let's say I have some data where the row and column variable can vary from 0 ...
3
votes
3answers
314 views
Interpolating along the 2-D image slices
I have a set of 100 2-D image slices of the same size. I have used MATLAB to stack them to create a volumetric data. While the size of the 2-D slices is 480x488 pixels, the direction in which the ...
3
votes
1answer
2k views
Python/Scipy 2D Interpolation (Non-uniform Data)
This is a follow-up question to my previous post: Python/Scipy Interpolation (map_coordinates)
Let's say I want to interpolate over a 2d rectangular area. My variable 'z' contains the data as shown ...
2
votes
1answer
70 views
Filling in Missing GPS Values in R
I am looking at data from a device that spends much of its time underwater. When it surfaces, it gets a GPS fix (lat & lon) and then sinks (losing its GPS fix) and continues gathering data again ...
2
votes
3answers
127 views
Matlab Fill previous value if missing value (or zero)
I have a vector containing a time series with different values and some missing values inbetween that are set to zero:
X=[0,0,2,0,5,0,0,0,4,0];
I want to create a new vector where the missing ...
2
votes
2answers
232 views
numpy arange with multiple intervals
i have an numpy array which represents multiple x-intervals of a function:
In [137]: x_foo
Out[137]:
array([211, 212, 213, 214, 215, 216, 217, 218, 940, 941, 942, 943, 944,
945, 946, 947, ...
1
vote
3answers
47 views
Windows Batch Files - Interpolate environment variables into executable call
Apologies if I overlooked this problem in another thread, but I was unable to find it (here or really anywhere on the internet).
In Windows (XP), I have the following global environment variable ...
1
vote
2answers
177 views
Google Maps V3 Geometry Library - Interpolate does not return expected Lat/Lng
I have spent hours on a strange problem with the interpolate function of google maps' geometry library. (see: http://code.google.com/apis/maps/documentation/javascript/reference.html#spherical)
I use ...
1
vote
1answer
427 views
Interpolate off a standard curve in Excel
Most simple thing to do on paper, but somehow near impossible to work out in Excel.
I need to interpolate off a standard curve in Excel.
I have a standard curve and need to find an unknown ...
1
vote
2answers
122 views
How do I interpolate over tif file image using itk?
This only goes out to those who knows the itk package well.
I just started using itk package recently to try to play with images using it, and I have a question.
I have two tif image files(dicom ...
1
vote
3answers
655 views
C Programming: Preprocessor, macros as tokens
I'm trying to do something that is conceptually similar to this, but can't seem to get it to work (error shown at end) any ideas?
#include <stdio.h>
int main( int argc , char const *argv[] )
{
...
1
vote
8answers
4k views
How do I interpolate variables to call a Perl function from a module?
Requirement is to pass module name and function name from the command-line argument.
I need to get the command-line argument in the program and I need to call that function from that module
For ...
0
votes
0answers
47 views
android scale animation with interpolator
I need to start an activity using a scale animation with a custom accelerate interpolator. here is my source code:
<set xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
1answer
51 views
Interpolate a discontinuous function with Scipy
I am having problems interpolating some data points using Scipy. I guess that it might depend on the fact that the function I'm trying to interpolate is discontinuous at x roughly 4.
Here is the code ...
0
votes
2answers
209 views
Linear Interpolation - Python
I'm fairly new to programming and thought I'd try writing a linear-interpolation function.
Say I am given data as follows:
x= [1, 2.5, 3.4, 5.8, 6]
y=[2, 4, 5.8, 4.3, 4]
I want to design a function ...
0
votes
1answer
67 views
PHP interpolate points on cardinal curve
I have a set of x,y points and wish to interpolate a set of higher detailed points in-between on a cardinal curve in php
I can't get my head around how to turn the mathematical formula on the web to ...
0
votes
2answers
530 views
Python griddata meshgrid
in Python I want to interpolate some data using scipy.interpolate.griddata(x,y,z,xi,yi).
Since I want my unequal spaced original data on the X-Y grid map on an equal spaced XI-YI grid I have to use a ...
0
votes
1answer
163 views
mysql interpolate data
Is there an 'easy way' to grab two rows of data from a table, and add rows with values 'in-between'?
I want to grab a latitude, a longitude and a timestamp from each row. Compare the timestamp to the ...
0
votes
1answer
679 views
Apache proxypass using a variable URL with interpolate
I'm trying to set up an apache server for test purposes. The goal is to simulate a loadbalancer. The part we're trying to simulate is simply accepting a clients secure httprequest and pass it on (via ...
0
votes
1answer
191 views
How to do value interpolations in a visual basic array?
HI
If there is a uniform terrain with a specific degree of roughness (know contour interval), how an interpolation can be performed if the grid around a specific point is known?
For example, if the ...