Fitting IP curves to data

Previous - Next - Top


Problem: Given a discrete set of data points sampled on a curve, find a coefficient vector of degree d such that the IP curve "best" represents the data.

Intuitive solution: Minimize the sum of euclidean distances from data points to the IP curve. No closed form expression for distance for general degrees.

Simple alternative (classical LS): Minimize sum of squared values of f at the data points. Gives poor representation of the data. Not robust under noise or shape perturbations.

Other approaches:

Our approach: Develop a robust fitting method while staying within a linear solution framework.


Previous - Next -Top