Problem in defining the fit type function for curve fitting tool

조회 수: 6 (최근 30일)
Shaily_T
Shaily_T 2022년 5월 24일
댓글: Shaily_T 2022년 5월 26일
I have defined a custom function for use in curve fitting toolbox. In my defined function, I need to call another function "kkrebook2" and its inputs are vectors. But for defining a fit type function we have a for loop of our "nu" value and everything is defined in that for loop which means the input for "kkrebook2" will be elements of vector of "nu". So, it doesn't work when I try to fit because it is getting elements instead of vectors.
But I do want to pass a vector of "nu" to "kkrebook2" in my fit type function. Could you please let me know how can I write my fit type function such that I can call "kkrebook2" in my fit type function properly?
This is related part of my code for the defined fit type function for curve fitting and the "kkrebook2" function.
Thank you in advance!
function p = SCR(nu,numGaussians,a,sigma)
for i = 1:length(nu)
for k = 1 : numGaussians
if k==1
b = Start;
else
b = Start+(24E6 * (k-1));
end
thisGaussian(i) = a.*exp(-((nu(i)-b).^2)/(2.*(sigma.^2)));
% Add into accumulator array:
gaussEqn1(i) = gaussEqn1(i) + thisGaussian(i);
d(i)= gaussEqn1(i);
end
Imag(i)=(-log(d(i))*c)./(nu(i));
Real(i)=kkrebook2(nu(i),Imag(i),0);
f(i)=(-r1+r2*exp(-(d(i)).*exp(-1i*Real(i)));
g(i)=(1-r1*r2*exp(-(d(i))).*exp(-1i*Real(i)));
p(i)= abs(f(i)./g(i));
end
end
  댓글 수: 2
Matt J
Matt J 2022년 5월 24일
There is no variable called 'x' in the code that you've shown.
Shaily_T
Shaily_T 2022년 5월 24일
편집: Shaily_T 2022년 5월 24일
Yes, you are correct. Thanks for capturing that! By "x" I mean "nu" in my code. I edditted my question.

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2022년 5월 24일
편집: Matt J 2022년 5월 24일
fittype( @(nu,numGaussians,a,sigma) SCR(nu,numGaussians,a,sigma),'independent','nu')
  댓글 수: 10
Matt J
Matt J 2022년 5월 26일
편집: Matt J 2022년 5월 26일
Here is what I see.
Whether or not this is what you expect is a separate issue from your posted question. Your post is asking how to make fit() invoke your model function and receiving ouput of the proper size. It now appears to be doing that, since no error messages are thrown.
As for why you are not seeing fit results that you expect, there are a number of possible reasons. Your start point could be bad. Or, your model and data may be inconsistent with one another.
Shaily_T
Shaily_T 2022년 5월 26일
Yes, that is correct. It is a different issue than what I posted. I posted the question then I was able to make some changes to the fit type function and I see it is working like this which doesn't make sense as the main problem is if I put the obtained fitting parameters in the fit type function I don't see the same result as the fitted curve. I will post another question for it.
Thanks for your time and consideration!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by