@@ -43,14 +43,14 @@ class FitModel(ABC):
43
43
Note that :class:`FitModel` subclass is instantiated with a list of
44
44
:math:`F_1` and :math:`F_2` (``fit_functions``) together with
45
45
a list of :math:`\Theta_1` and :math:`\Theta_2` (``signatures``) and
46
- :math:`\Theta_{\rm fix}` (``fixed_parameters` `).
46
+ :math:`\Theta_{\rm fix}` (set via :meth:`bind_parameters `).
47
47
The signature of new fit model instance will be
48
48
:math:`\Theta = (\Theta_1 \cup \Theta_2) - \Theta_{\rm fix} = \{ p_0, p_2, p_3\}`.
49
49
The fit function that this model provides is accordingly
50
50
51
51
.. math::
52
52
53
- F(x, \Theta) = F_1(x_0, \Theta_1) \oplus F_2(x_1, \Theta_2) \\
53
+ F(x, \Theta) = F_1(x_0, \Theta_1) \oplus F_2(x_1, \Theta_2) \
54
54
= F(x_0 \oplus x_1, p_0, p_2, p_3).
55
55
56
56
This function might be called from the scipy curve fit algorithm
@@ -70,8 +70,8 @@ class FitModel(ABC):
70
70
71
71
This class is usually instantiated with the :class:`SeriesDef` in the
72
72
``__init_subclass__`` method of :class:`CurveAnalysis` subclasses.
73
- User doesn't need to take care of input values to the constructor
74
- unless one manually instantiates the class for debugging purposes.
73
+ User doesn't need to take care of how to initialize this class
74
+ unless one manually create the instance for debugging purposes.
75
75
"""
76
76
77
77
def __init__ (
0 commit comments