Calling a custom function in fittype
7 次查看(过去 30 天)
显示 更早的评论
Hi,
I am attempting to create a custom fit, which itself calls a simple function.
In a separate .m file I define a function for finding the full width at half maximum of a curve ("Y"):
function[F05] = FWHMf(x,Y)
[~,b] = min(abs(Y-0.5));
F05 = 2*abs(x(b));
I then call this function in my main .m file thus:
F3 = @(w,x,q,S) FWHMf(x,exp(-x.^2./(q+w^2)));
CF3 = fittype(F3,'coefficients','w','independent',{'x','q'},'dependent','S');
Where, I have measured "S" as function of "q", and I wish to find the parameter "w" using the fit.
This code produces an error:
"Custom equations must produce an output vector, matrix, or array that is the same size and shape as the input data. This custom equation fails to meet that requirement"
when run in Matlab version 2014b.
I know I must be doing something wrong here, perhaps in my entire approach to the problem. Any suggestions would be greatly appreciated.
Cheers,
David
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!