Files
senior-design/strut/reversefit.m
2022-10-31 14:16:52 -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);