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

2
votes
2answers
47 views

Ruby, Interpolating an Array of Strings

When I interpolate an array of strings, it includes the escape characters for the quotes '\"', how would I interpolate it sans quotes? string_array = ["a","b","c"] p "#{string_array}" # => ...
2
votes
3answers
33 views

What does interpolate mean in the context of underscore.js's template function?

I'm trying to understand the difference between underscore's template method's markup types. Specifically, I'm trying to figure out the difference between underscores <%- %> markup and <%= %> ...
1
vote
0answers
24 views

Javascript spline/arc interpolation for dummies

I'm hitting a wall in some work I'm doing; I've searched on here for many, many threads regarding numerical interpolation and have found them either to contain too much math for me to interpret them, ...
5
votes
1answer
95 views

Minimal surface solution in Python

I have a set of 3D points defining a 3D contour. What I want to do is to obtain the minimal surface representation corresponding to this contour (see Minimal Surfaces in Wikipedia). Basically this ...
2
votes
1answer
39 views

Retrieve value from interpolated function

I am very new to python, and as a project I decided to write my Mathematica project in python to see how it works, hence the code is written in as close a style to Mathematica as possible. I am ...
0
votes
0answers
26 views

PyYAML load into xml.etree.ElementTree

I'm a newbie of pyYAML, and even of Python. I want to load a YAML config into a xml.etree.ElementTree object. But I totally have no idea how to implement the constructor. actually, the one thing I ...
0
votes
0answers
37 views

Plotting a 4-D interpolated function in matplotlib

I'm new to Python and matplotlib, and I have a rather difficult plotting problem that I need to solve. I have a set of data points for a four dimensional function which I need to represent visually. ...
0
votes
1answer
34 views

interpolate in a 3 dimensional spline in R

I would like to fit a surface to some values: x = 1:10 y = 10:1 z = sample(1:10,10) I would like to fun something like spline_function(z ~ x + y). The actual spline functions in R seem to take only ...
0
votes
1answer
19 views

Rails: Interpolation in an ActiveRecord Relationship Declaration

I have a concern that dynamically creates relationship declarations: has_many :revisions, dependent: :destroy, class_name: "#{class.name}::Revision" Note that the class_name is trying to ...
1
vote
1answer
87 views

Glitches with Triangulation + Linear Interpolation + 3D projection

Intro Hey! Some weeks ago, I did a small demo for a JS challenge. This demo was displaying a landscape based on a procedurally-generated heightmap. To display it as a 3D surface, I was evaluating ...
1
vote
2answers
64 views

scipy results linear interpolation results inconsistent

I need to perform linear interpolation on a data containing 'n' independent variables and a dependent variable. I am currently using scipy.interpolate.LinearNDInterpolator for performing the ...
0
votes
0answers
72 views

Scale 2D-Array using Bicubic Interpolation

I want to scale an arbitrary double[][] to another double[][] with different dimensions. The values of the resulting array should be calculated based on the input array using bicubic interpolation. I ...
2
votes
1answer
43 views

identifying gap size in 1D numpy array

I have a numpy array containing gaps of various sizes. I would like to fill the smaller gaps of size < N with linear interpolation. In other words for: N = 2 and x = np.array([10., 20., ...
0
votes
1answer
69 views

Python function which will call a 1D vector values

I have the next sequence of numbers of A array( is an array 1D ) -1.7654142212e-06 7.0737426918e-07 1.63230254789e-06 1.88255344022e-06 5.00966829007e-06 1.88631278169e-06 -4.08751917695e-06 ...
2
votes
4answers
61 views

How to make inperpolation of a 2D array

How can I make a function of 2 variables that would return an array interpolation value? I have NxM array A. I need to interpolate it and somehow obtain the function of that surface so I could pick ...
0
votes
2answers
81 views

Bilinear interpolation

I got this code for scaling image by bilinear interpolation.I know this works but i can't figure out one thing what if the approximated pixel value is an edge(by edge i mean it is in the last row or ...
0
votes
1answer
43 views

How to optimize this smoothstep function ? Is there any alternative?

In one of my projects, I use the following smoothstep() function : float smoothstep(float a, float b, float m, int n) { for(int i = 0 ; i < n ; i++) { m = m * m * (3 - 2 * m); ...
1
vote
2answers
45 views

Perl using $1 in a substitution replacement with variable interpolation

I am trying to use variable interpolation in a replacement string including $1, $2,... However, I can't get it to expand $1 into the replacement. I eventually will have the $pattern and $replacement ...
0
votes
0answers
74 views

D3.js Need to animate (sweep) Arc progressively

I am trying to animate arcs inside circles. Everything is working fine except the fact that I want to animate the arc from start to end angle as if it is drawn. I have searched through, and found ...
0
votes
1answer
70 views

Matlab regression with periodic data

I have a vector of periodic values: How would you suggest to fit this values, so I can predict the values out of the starting range ? I fFound this interesting example: ...
-1
votes
1answer
33 views

Error while printing variable interpolation in python [closed]

I am python newbie and facing trouble with variable interpolation concept in python I have written a method to check the argument but it giving error while printing the line import re import ...
0
votes
1answer
60 views

Average multiple vectors of points of different lengths in python

I have a list of trajectories for different trials that themselves are a list of points... trajectories = [[(x,y),(x,y), ...], [(x,y), ...], ...] the number of points vary from trial to trial. ...
4
votes
2answers
119 views

scipy: fast interpolation of regularly sampled 3D data with different intervals in x,y, and z

I have some volumetric imaging data consisting of values sampled on a regular grid in x,y,z, but with a non-cubic voxel shape (the space between adjacent points in z is greater than in x,y). I would ...
0
votes
1answer
44 views

Interpolation issue after renderInContext:UIGraphicsGetCurrentContext(), iOS

I have a few UIVies butted edge to edge. THe views completely cover the superView. Looks great in display, but when rendered the adjoining edges are visible, that is to sat a line appears between ...
0
votes
0answers
73 views

libgdx box2d interpolation doesn't work well

I am developing an Android game with libgdx and box2d. My Problem is that the interpolation of the body in box2d doesn't work well... The body is laging a bit. The body is "less laging" without the ...
0
votes
1answer
52 views

Using a median operator to combine four initial disparity maps into one

Hi could someone please help I am using matlab to generate a disparity map. I have performed multi-wavelet transforms on two rectified stereo pairs and have used a stereo matching algorithm to combine ...
0
votes
0answers
31 views

1D Linear Interpolation in PHP

I need to do a 1D linear interpolation in PHP. A very simple example: timea = [1 2 3 4 5 6 7 8 9 10]; valb = [4 4 4 4 4 4 4]; (Flat surface for example) timeb = [1 2 3 4 6 7 10]; (Note there are ...
0
votes
0answers
51 views

Python SciPy interpolation - missing functions

I installed SciPy 0.12.0 for Python 2.7 from http://www.lfd.uci.edu/~gohlke/pythonlibs/, but I have just scipy.interp instead of scipy.interpolate functions. It's not what I want, because interp ...
0
votes
1answer
45 views

Sass Interpolation challenge

I'm trying to loop through a list of values in Sass and use interpolation of the current key to dynamically output class names that utilize @include and @extend, respectively. Here is a pen showing ...
1
vote
1answer
112 views

AngularJS strategy to prevent flash-of-unstyled-content for a class

I have an AngularJS project, I want to prevent a FOUC during page load on a classname. I've read about ng-template but that seems useful only for content within a tag. <body class="{{ bodyClass ...
3
votes
1answer
56 views

how to interpolate points in a specific interval on a plot formed by loading a txt file in to scipy program?

I have a text file with two columns, x and y. I have plotted them using the below program in scipy as shown below. import matplotlib.pyplot as plt with open("data.txt") as f: data = f.read() ...
3
votes
2answers
68 views

How to remove variable amount of consecutive NaN values from vector in Matlab?

I have a vector of values such as the following: 1 2 3 NaN 4 7 NaN NaN 54 5 2 7 2 NaN NaN NaN 5 54 3 2 NaN NaN NaN NaN 4 NaN How can I use interp1 in such way that only a variable amount of ...
0
votes
0answers
92 views

Matlab griddata equivalent in C++

I am looking for a C++ equivalent to Matlab's griddata function, or any 2D global interpolation method. I have a C++ code that uses Eigen 3. I will have an Eigen Vector that will contain x,y, and z ...
1
vote
1answer
52 views

Random sampling to increase accuracy of pressure estimate?

In our simulations, we have an underlying 2D grid over which a closed curve (red line) can move. Grid cells are coloured, based on the location of their centre, as either inside the curve (green) or ...
1
vote
2answers
67 views

How can I pass instance variables to a HAML template on the command line?

Background I'm trying to test the formatting of some HAML templates outside of Rails. The idea is to pass in some instance variables on the command line or via an included Ruby file, rendering the ...
0
votes
2answers
58 views

Interpolate Missing Values in SQL Server 2012

I want to interpolate missing values and update my table accordingly in SQL server 2012 For example my data is as follow: Week_Number Var1 Output_Var 1 10 10 2 20 ...
0
votes
1answer
61 views

Draw image on canvas with interpolation

Is there a way to apply interpolation to an image or canvas in Javascript? If there is no built-in API for this, what is the best algorithm/method/approach that can be used? Is pixel data manipulation ...
0
votes
2answers
52 views

interpolate into string in java [duplicate]

Say I have a list of char variables called perm1, perm2, perm3, ..., perm10. I am doing the same function to all ten char variables, and would rather put them through a loop using something like ...
0
votes
2answers
93 views

Matlab: Find a root of y-values given by a differential equation

I've solved an initial value differential equation and plotted the Y values given by ODE45. From the plot I can vaguely tell where the root should be, but in the given task I need to find it with ...
0
votes
1answer
34 views

Is it possible to add a javascript variable into an escape_javascript statement?

I know this sounds insane. ;) My Line : "#{escape_javascript(content_tag(:a, "edit", :href => edit_object_payment_url(@object, "\#{payment_id}"))) Then with interpolation, I inject my ...
3
votes
4answers
170 views

How to find delaunay triangulation facets containing the given points

I have plotted n random points (the black points) and used delaunay triangulation, now I want to interpolate m random evaluation points (the red points) so I need to calculate which triangle the ...
3
votes
1answer
119 views

How to create multiple stop gradient fragment shader?

I'm trying to create an OpenGL ES 2.0 fragment shader that outputs multiple stop gradient along one axis. It should interpolate between multiple colors at points defined in percents. I've achieved ...
2
votes
1answer
61 views

Make sure the first and second differential are continuous while using cubic spline interpolation

I'm reading this paper. In this paper on page 286 they say they use cubic spline interpolation to ensure the existence of continuous first-order differential and second-order differentials. I'm ...
1
vote
1answer
50 views

using interp1 in R for matrix

I am trying to use the interp1 function in R for linearly interpolating a matrix without using a for loop. So far I have tried: bthD <- c(0,2,3,4,5) # original depth vector bthA <- ...
2
votes
4answers
95 views

Circular interpolation in python

I have two systems, each of which has a direction sensor (0-360 degrees), but the sensors can provide wildly different values depending on the orientation of each system and the linearity of each ...
0
votes
1answer
41 views

What is “t” in bicubic interpolation?

I was reading about bicublic interpolation on wikipedia. I came across the variable t which is not defined. The equation is: Can anyone please tell what this variable means and what are the usual ...
0
votes
1answer
38 views

Interpolation and image drawing

In my little project I have a function that returns a list of points coordinates. Like this: points = [(x1, y1), (x2, y2),...] When I draw it on image, I get points on image but I want ...
0
votes
1answer
50 views

Replot the same data point multiple times before continuing in Matlab

If I have the following code : for t=1:length(s) % s is a struct with over 1000 entries if s(t).BOX==0 a(t,:)=0; elseif s(t).BOX==1 a(t,:)=100; end if s(t).BOX==2 b(t,:)=150; ...
0
votes
0answers
98 views

Matlab function 'TriScatteredInterp' will be removed in a future release

Since the function 'TriScatteredInterp' will be removed in a future release, use of 'scatteredInterpolant' is suggested. My question is how to use 'scatteredInterpolant' on the example found here: How ...
0
votes
1answer
214 views

Connect discrete points together in a plot using Matlab?

If I have the following figure : created by the code : for t=1:length(s) % s is a struct with over 1000 entries plot(t,r1,'k'); % r1 = (0,100,150,170) + 1050 plot(t,r2,'g'); % r2 = ...

1 2 3 4 5 15