Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
893 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 steps are on different ...
3
votes
4answers
158 views

Where can I find a c# library to solve cubic equations?

I came across this site which solves cubic equations http://www.cubicsolver.com. Does anyone know of an open source c# library that can do the same thing?
3
votes
1answer
259 views

Solving a cubic to find nearest point on a curve to a point

Ok, I have a projectile that has its position defined such that: a.x = initialX + initialDX * time; a.y = initialY + initialDY * time + 0.5 * gravtiy * time^2; I want to be able to predict which ...
1
vote
1answer
1k views

Cubic spline in matlab

i have trouble getting a matlab code to work properly! i found a cubic spline code in matlab to give me the interpolated polynomial. and i simply give it an example to work: Xi = [0 0.05 0.1] Fi = ...
1
vote
1answer
568 views

Cubic Spline class for Obj C or C?

I need to use natural cubic spline interpolation in an iPhone app. Does anyone know of a class for Obj C or C that resembles this: http://www.ee.ucl.ac.uk/~mflanaga/java/CubicSpline.html ...
0
votes
1answer
41 views

Aproximate n grade Bezier through cubic and/or quadratic Bezier curves

I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods. Is there a way to split or aproximate the 6 (or n) ...
0
votes
0answers
91 views

Cubic Spline interpolation how to calculate second spline S2

I have a task in pascal to calculate cubic spline, I ve done the program almost, and have a question still, So my task is calculate for a function y=f(x) find splines S1 and S2, also find a delta1 = ...
0
votes
0answers
104 views

openGL ES - how to change view of a cube from outside to inside of cube, to make it look like a panorama

I am using panoramaGL library available here. Basically it as designed for iOS3 but after a three days time killing i got succeeded in running it with iOS4. Though for me it only works with Cubic ...
0
votes
1answer
89 views

Cubic image converter?

I am looking for software (preferably free) that runs on either windows or osx that can take a list cubic images (broken into front, back, up, down, left, right) and turn them into a video. I am also ...
-1
votes
1answer
365 views

Matlab spline interpolation

Yesterday i asked a question about a cubic spline code in matlab but no one answered it. so i make my question simpler. anyone knows a complete code in matlab which gives me the spline polynomial ...
-3
votes
1answer
211 views

cubic spline interpolation in R [closed]

I am trying an implementation of a cubic spline in R. I have already used the spline, smooth.spline and smooth.Pspline functions that are available in the R libraries but I am not that happy with the ...