reorganized file structure

This commit is contained in:
2010-04-17 12:00:00 -05:00
parent ecb6c5bb6b
commit 71f81ab34e
469 changed files with 0 additions and 37 deletions

7
strut/reversefit.m Executable file
View File

@@ -0,0 +1,7 @@
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);