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
- How to resize ext4 without adding more inodes?
- The state's miniscule security apparatus is already 'ruling' a large teeming populace, how much more barebones can we get?
- How much storage space do I really have?
- 南方 和 南部—different?
- Three-cushion billiards challenge.
- How can I clean unsealed concrete before installing flooring?
- 1980s comedy horror movie where one male mate tells another, "Girlfriends come and go, but mates are forever!"
- Which objects in a topos such as the étale topos are "classifying spaces" of their fundamental groups?
- ASCII-based Lightweight Browser in Python with Clippy-Style Helper (Updated)
- Dactylic Hexameter
- Making the most out of rawhide armour
- Do I have to transcribe all pronunciation details if I use the [] transcription?
- "O fortunati, quorum iam moenia surgunt!" -- why the indicative mood?
- Why do metals burn you when they've been left outside in direct sunlight?
- When was the last time U.S. Congress overrode a president's veto?
- What is the USER= value reported for sudo attempts?
- What do "spelling pronunciation" and "~" mean in Wiktionary?
- How to animate this blob?
- How do you time a Perfect Guard against a Guardian?
- Who gets to choose where a summoned familiar appears?
- Can military personnel disobey illegal orders under U.S. law?
- Draconic Sorcerer - adding Charisma modifier?
- Mirror in both directions in Inkscape
- What does it mean to not know something you should know?
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$