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

1
vote
1answer
27 views

How can I interpolate between 2 points when drawing with canvas?

I have a paint-style application that works with touch events. The JavaScript code is... var RADIUS = 10; var ctx = document.querySelector("canvas").getContext("2d"); var getRandomColorFragment = ...
1
vote
2answers
37 views

Ruby: eval with string interpolation

I don't understand, why eval works like this: "123 #{456.to_s} 789" # => "123 456 789" eval('123 #{456.to_s} 789') # => 123 How can I interpolate into a string inside eval? Update: Thank ...
0
votes
1answer
20 views

Piecewise Cubic Hermite Interpolating Polynomial (PCHIP) for given data in MATLAB and then finding area

Hello friends I am trying to do Piecewise Cubic Hermite Interpolation on the data given below in MATLAB and then I want to get the area covered by the polynomials with x axis. I think, I am ...
2
votes
1answer
64 views

Plotting a 3D surface with no interpolation?

I have a following data: library(rgl) x <- c(rep(1,6), rep(3,6), rep(6,6), rep(9,6), rep(12,6)) y <- c(1.35,1.39,1.48,1.29,1.35,1.32, ...
2
votes
2answers
63 views

Comparing two sets of data (x,y)

I have stored numerical data in lists with its coordinates (xValues, yValues), and if I want to compare (add, subtract, divide...) that set of data to another I have to be aware of that I can't ...
1
vote
0answers
17 views

Appropriate type for storing numerical data and be able to interpolate

I'm reading pairs of data (xValues, yValues) and I was wondering what is the best way of stroring them. At this moment I am doing it in List<double>, ObservableCollection is not requiered ...
0
votes
1answer
48 views

How do I combine two ordered series of different resolution in R?

I have some borehole geological data, ordered by depth from surface to some total depth. There are several sets that I wish to combine into one, each with different resolution. The highest resolution ...
1
vote
1answer
47 views

setting up a CUDA 2D “unsigned char” texture for linear interpolation

I have a linear array of unsigned chars representing a 2D array. I would like to place it into a CUDA 2D texture and perform (floating point) linear interpolation on it, i.e., have the texture call ...
3
votes
0answers
57 views

ZeroDivisionError when using scipy.interpolate.griddata

I'm getting a ZeroDivisionError from the following code: #stacking the array into a complex array allows np.unique to choose #truely unique points. We also keep a handle on the unique indices #to ...
0
votes
2answers
31 views

string interpolation java 1.3 and below(if possible)?

I have a simple string, where I need to insert a few numbers and strings. Say String a = "My name is %s. I am %d years old". I also need to insert same number or string at several of these holes. I ...
0
votes
0answers
11 views

frame interpolation in live 3D rendering

I'm intrigued by the presentation: Real-time Frame Rate Up-conversion for Video Games by Dmitry Andreev at Siggraph 2010. Basically it interpolates some of the frames without actually rendering those ...
1
vote
0answers
42 views

Image Processing Issue: Fill NaNs in image, which mostly consists of NaNs

I have a dataset / image DD like the one in this image: (by the way: is there a way of uploading small data sets here, so that you can actually work with the same data I use, without having to put ...
0
votes
0answers
19 views

Convolution of signals with different sampling rates

I have 2 signals with different sampling rates and the results of the convolution isn't as expected and being a novice in signal processing, I believe my approach(code snippet below) to convolve ...
0
votes
0answers
21 views

Prevent sass colour names from expanding inside interpolation

I'm trying to automatically build some selectors to assist in tinting zurb foundation flyouts. I'm pretty sure I had this working before. But before I get into specifics, here is the sass : .flyout ...
0
votes
1answer
52 views

How to do polar interpolation in matlab

I have a scalar quantity Q(r, theta) which I want to interpolate in polar coordinates. The problem is theta runs from 0 to 2*pi. Thus there is a discontinuity at the 0 and 2*pi interface which is ...
0
votes
0answers
41 views

SLERP rotates in the wrong direction (i.e. not shortest path)

I have two ellipsoids in R3 described in terms of their centre points (P), their axes lengths (a,b,c), and their rotation vector (R). I wish to interpolate a tubular structure between these two ...
5
votes
2answers
53 views

Why would feval return NaN in MATLAB

I have a bunch of points in 2D for which I know the value, and I'd like to fit a cubic spline through them to interpolate some other data around using MATLAB. My code looks like: fitobject = ...
1
vote
1answer
103 views

3D interpolation methods in C (or Fortran), and comparison to Shepard's Method

I would like to interpolate a 3D scalar function f(x, y, z). I have coded up a 3D linear interpolation algorithm (http://en.wikipedia.org/wiki/Trilinear_interpolation). This was not so bad. ...
1
vote
1answer
58 views

Interpolating between two arbitrarily oriented ellipsoids

I'm not sure if this would be better asked on Mathoverflow, but I thought I would check here first. I have tried to be as clear and concise as possible; if there is anything that needs clearing up ...
1
vote
1answer
34 views

Why is this Matlab error inconsistent with actual tests?

When I run interp2 having defined my arrays with MESHGRID it produces no error and when defined with NDGRID an error is produced. However, that makes no sense because the error (shown below) claims ...
-5
votes
1answer
65 views

How to interpolate matrix “between values” values in Matlab [closed]

Let's say I have a 3-by-3 matrix of the following values in Matlab: A = [1 3 5; 3 5 7; 5 7 9]; How can I interpolate my matrix for example to be: A = [1 2 3 4 5; 2 3 4 5 6; 3 4 5 6 7; 4 5 6 7 ...
0
votes
2answers
37 views

PHP variable interpolation vs concatenation [closed]

What is the difference between the two following methods (performance, readability, etc.) and what do you prefer? echo "Welcome {$name}s!" vs. echo "Welcome ".$name."!";
-1
votes
1answer
42 views

Matlab interpolation for a figure [closed]

I am now having an assignment on matlab. I am asked to plot some points based on an image of a hand. Then, I should use lagrange interpolation method to plot all the points together so that the shape ...
3
votes
2answers
60 views

In Ruby can data interpolated into a string cause the string to terminate?

In Ruby is there any way that data added to a string with interpolation can terminate the string? For example something like: "This remains#{\somekindofmagic} and this does not" # => "This ...
0
votes
1answer
23 views

Smoothing lines in calligraphic style

I writing draw app in JavaScript and Canvas. I want to smooth curves which user draws as "calligraphic" letters, as I seen in Handrite app for Android. Are there some algorithm to do this type of ...
2
votes
2answers
72 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
44 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
46 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
138 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
51 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
35 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
46 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
47 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
22 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 ...
2
votes
1answer
105 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
72 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
159 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
51 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
73 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
87 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
212 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
54 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
52 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
130 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
87 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
41 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
69 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
206 views

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
51 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 ...
1
vote
0answers
105 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 ...

1 2 3 4 5 15