08-09-2011 11:05 AM
Is there an easy way to force a 3rd order polyfit through the origin or constrain it through a point??
Solved! Go to Solution.
08-09-2011 11:16 AM
The General Polynomial Fit allows you to constrain coefficients but not through fixed points.
08-09-2011 11:18 AM
The easiest way (using the functions available in LV) is to set a high weighting to the point you want to cross.
For instance set the weighting to 1 for all points except the origin where you can use a weighting of 100000 or so.
08-09-2011 12:38 PM
This worked... I created a weighted array populated with conditionally set weightings for the points that I needed to force the polyfit through. Thanks for your help!