Continuous Piecewise Function in Anonymous Fittype Equation

7 次查看(过去 30 天)
Hey guys, This will (hopefully) be my last question I have on here. Had mixed luck so far. Basically what I have right now is an anonymous function with a fittype command followed by a fit command.
For example:
f = fittype('equation... etc.);
[c2,gof2]=fit(xdata,ydata,f,... etc.);
Right now the equation is a sum of various gaussians, easy enough to pass. However I need to modify this, I need to add in piecewise functions.
What I mean by that is I need (in English not Math lingo):
For x<B: y = straight line,
For y>=B y = gaussian
The straight line is at the top of the gaussian so the overall equation is continuous and differentiable. However, I am unsure how this would work in a fittype command and what I can do to get it to work.
A thought:
- Any way to define a function prior to the fittype command that is this piecewise function, say p(x), then just put 'p(x)' inside the fittype command using the variables of p(x) as "coefficients" to fit the equation.
Thanks to anyone who replies. This is the final hurdle for my project so mucho appreciado!
  2 个评论
bym
bym 2011-12-20
what does this mean "The straight line is at the top of the gaussian so the overall equation is continuous and differentiable." Can you draw a picture & post?
Walter Roberson
Walter Roberson 2011-12-20
http://www.mathworks.com/matlabcentral/answers/7924-where-can-i-upload-images-and-files-for-use-on-matlab-answers

请先登录,再进行评论。

采纳的回答

Scott
Scott 2011-12-21
((x>0 & x<=xa).*(A)+(x>=xa & x<100).*(A.*exp(-2.77.*((x-xa).^2)./B./B)))
Basically have (Limits Function Exists).*Function + (Limit Function Exists).*Function etc.
This is all inside the fittype command.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by