I am doing nonlinear fits on multiple datasets with several fitting parameters. Each dataset is fit with the same equation and same fitting parameters. Specifically, I am using the curve fitting toolbox in MATLAB. One of the fitting parameters should be the same across all datasets (so that the data is physically meaningful), although when I actually fit the data, this parameter can shift between sets. Is there some way to fit my datasets while constraining this fitting parameter to take on a single value?
$\begingroup$ $\endgroup$
8 - The Overflow Blog
-
-
- Featured on Meta
-
-
Related
Hot Network Questions
- Proper antonym of "body shaming"
- When was the last time U.S. Congress overrode a president's veto?
- 南方 和 南部—different?
- expl3: l3file: \iow_now:Ne... doesn't expand tokens before writing to the stream?
- How can I change the orientation of geometry node instances on curve points, so they wrap around the surface of a mesh?
- Is it theft if a person takes an item they believed was free?
- Bethesda or Bethzatha in John 5:2?
- Staggered monitors: Mouse moving to other monitor where not abutting
- Is a differential pair stage of an opamp still useful with single ended input
- PS Plus subscriber — Football Manager 2024 worked yesterday on PS5 but now says "This content is not available. To use this content, purchase it"
- "O fortunati, quorum iam moenia surgunt!" -- why the indicative mood?
- Jesus said if He didn't go away the Holy Spirit wouldn't come. He also said He [already] abides with you and will be in you. Is Jesus the Holy Spirit?
- What is the best thing add for curry leaf plants with interveinal chlorosis
- How to configure language with DocumentMetadata and documentclass
- What exactly is different about the slice of space and lightcone concept in special relativity?
- How to animate this blob?
- Different CIs for the same linear mixed model emmeans, ggemmeans, ggpredict
- How to change the color of the individual squares on a chessboard?
- Cutting a Möbius strip in thirds. Why are the resulting strips interlinked?
- Fantasy story from F&SF Magazine about a djinn, and a sheik's descendants and nation becoming wealthy by water transforming into oil
- What is the USER= value reported for sudo attempts?
- Why does the final -ts in 'les États-Unis' produce a /z/ liaison sound rather than /t/ or /s/?
- PhD public defense mode before PowerPoint or QuickTime was invented
- Why are Jeremy Crawford's rules comments unreliable?
lsqnonlin(or maybelsqcurvefit,I can't remember). Then $\phi$ appears only once in the parameter vector :) $\endgroup$lsqcurvefitsupports this, as well as weights if needed. And if memory serves, that's one of its advantages overlsqnonlin, especially for this kind of curve-fitting/optimisation problem. The second - defining the function differently - is also a great solution, particularly in cases where the shared parameter is a known, fixed value. Occam's razor springs to mind ! $\endgroup$