Files
senior-design/strut/reversefit.m
2010-04-17 12:00:00 -05:00

8 lines
122 B
Mathematica
Executable File

function theta=reversefit(P,y,theta0);
TOL=1e-8;
F='Func1(x,P,y)';
FP='FFunc1(x,P)';
theta=Newton(F,FP,theta0,y,P,TOL);