from
GUI for Generalized Nonlinear Non-analytic Chi-Square Fitting
by Nathaniel Brahms
Provides a Curve Fitting Toolbox-like interface for chi-square fitting
|
| FitChiToolExample.m |
%Tutorial for use with FitChiTool
x = 0:0.2:10';
dx = zeros(length(x),1);
y = 4*sin(2*x+5).*exp(-0.3*x);
y = y';
dy = 0.5;
y = y + dy*randn(length(y),1);
dy = dy*ones(length(y),1);
helpPath = which('FitChiTool.m');
helpPath = [helpPath(1:findstr(helpPath,'FitChiTool.m')-1)...
'html\FitChiToolHelp.html#tutorial'];
web(helpPath);
%FitChiTool
|
|
Contact us at files@mathworks.com