@@ -43,14 +43,14 @@ class FitModel(ABC):
4343 Note that :class:`FitModel` subclass is instantiated with a list of
4444 :math:`F_1` and :math:`F_2` (``fit_functions``) together with
4545 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 `).
4747 The signature of new fit model instance will be
4848 :math:`\Theta = (\Theta_1 \cup \Theta_2) - \Theta_{\rm fix} = \{ p_0, p_2, p_3\}`.
4949 The fit function that this model provides is accordingly
5050
5151 .. math::
5252
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) \
5454 = F(x_0 \oplus x_1, p_0, p_2, p_3).
5555
5656 This function might be called from the scipy curve fit algorithm
@@ -70,8 +70,8 @@ class FitModel(ABC):
7070
7171 This class is usually instantiated with the :class:`SeriesDef` in the
7272 ``__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.
7575 """
7676
7777 def __init__ (
0 commit comments