Complementary error function curve fitting
조회 수: 18 (최근 30일)
이전 댓글 표시
Hi,
I have an experimental dataset which I know would be fitted by erfc(x)
I tried using the custom equation option in the curve fitting toolbox, but it does not work.
The generated code looks like this
ft=fittype('A*erfc(2e5*sqrt(a*x))+c', 'independent', 'x', 'dependent', 'y' );
fitresult=fit(x,y,ft);
plot(fitresult,x,y)
and the figure after fitting

I do not know where I am going wrong.
댓글 수: 0
답변 (1개)
Star Strider
2014년 8월 4일
편집: Star Strider
2014년 8월 4일
You likely need to allow the function to find its own centre:
ft=fittype('A*erfc(2e5*sqrt(a*(x-b)))+c', 'independent', 'x', 'dependent', 'y' );
Your equation assumes your data are centred about x=0. Changing the expression from ‘a*x’ to ‘a*(x-b)’ allows the function to centre around b. I can’t test your code, but that should work.
댓글 수: 2
Star Strider
2014년 8월 4일
My pleasure!
Actually this is what I intended:
ft=fittype('A*erfc(2e5*sqrt(a*x)-b)+c', 'independent', 'x', 'dependent', 'y' );
I initially put b in the wrong place in the erfc argument. My apologies. (I was up late last night fighting a spambot here on MATLAB Answers.)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!