Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
9answers
1k views

Point Sequence Interpolation

Given an arbitrary sequence of points in space, how would you produce a smooth continuous interpolation between them? 2D and 3D solutions are welcome. Solutions that produce a list of points at ...
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
507 views

Drawing aliased, pixel-perfect 1px splines (Catmull-Rom, specifically)

A brief background: I'm working on a web-based drawing application and need to draw 1px thick splines that pass through their control points. The issue I'm struggling with is that I need to draw each ...
1
vote
1answer
166 views

How to plot Splines with ggplot2?

I have some data that i want to make a histogram of. However, I want to represent this histogram with line. I have tried using the freq_poly of the ggplot2. However, the line produced is pretty ...
0
votes
3answers
78 views

scipy.interpolate.UnivariateSpline not smoothing regardless of parameters

I'm having trouble getting scipy.interpolate.UnivariateSpline to use any smoothing when interpolating. Based on the function's page as well as some previous posts, I believe it should provide ...
0
votes
0answers
139 views

Transform shape built of contour splines to simple polygons

I've dumped glyphs from truetype file so I can play with them. They have shape contours that consist from quadratic bezier curves and lines. I want to output triangles for such shapes so I can ...
0
votes
4answers
2k views

Reporting Services Line Graph: How to better control the smoothed curve

I have a report that I built for a client where i need to plot x 0-100, y 0-100. Lets imagine I have these points: 0,0 2,24 50,70 100,100 I need to represent these as a smoothed line chart, as the ...