@@ -80,9 +80,10 @@ def model(
8080 :param constraints_loc: Constraints for location model. Can be one of the following:
8181
8282 - np.ndarray:
83- Array with constraints in rows and model parameters in columns.
84- Each constraint contains non-zero entries for the a of parameters that
85- has to sum to zero. This constraint is enforced by binding one parameter
83+ Array with constraints in columns and model parameters in rows.
84+ Each constraint contains non-zero entries for the constrained parameters that
85+ have to sum to zero. For a non-constrained parameter the revelant constraint column
86+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
8687 to the negative sum of the other parameters, effectively representing that
8788 parameter as a function of the other parameters. This dependent
8889 parameter is indicated by a -1 in this array, the independent parameters
@@ -113,9 +114,10 @@ def model(
113114 :param constraints_scale: Constraints for scale model. Can be one of the following:
114115
115116 - np.ndarray:
116- Array with constraints in rows and model parameters in columns.
117- Each constraint contains non-zero entries for the a of parameters that
118- has to sum to zero. This constraint is enforced by binding one parameter
117+ Array with constraints in columns and model parameters in rows.
118+ Each constraint contains non-zero entries for the constrained parameters that
119+ have to sum to zero. For a non-constrained parameter the revelant constraint column
120+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
119121 to the negative sum of the other parameters, effectively representing that
120122 parameter as a function of the other parameters. This dependent
121123 parameter is indicated by a -1 in this array, the independent parameters
@@ -291,9 +293,10 @@ def residuals(
291293 :param constraints_loc: Constraints for location model. Can be one of the following:
292294
293295 - np.ndarray:
294- Array with constraints in rows and model parameters in columns.
295- Each constraint contains non-zero entries for the a of parameters that
296- has to sum to zero. This constraint is enforced by binding one parameter
296+ Array with constraints in columns and model parameters in rows.
297+ Each constraint contains non-zero entries for the constrained parameters that
298+ have to sum to zero. For a non-constrained parameter the revelant constraint column
299+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
297300 to the negative sum of the other parameters, effectively representing that
298301 parameter as a function of the other parameters. This dependent
299302 parameter is indicated by a -1 in this array, the independent parameters
@@ -324,9 +327,10 @@ def residuals(
324327 :param constraints_scale: Constraints for scale model. Can be one of the following:
325328
326329 - np.ndarray:
327- Array with constraints in rows and model parameters in columns.
328- Each constraint contains non-zero entries for the a of parameters that
329- has to sum to zero. This constraint is enforced by binding one parameter
330+ Array with constraints in columns and model parameters in rows.
331+ Each constraint contains non-zero entries for the constrained parameters that
332+ have to sum to zero. For a non-constrained parameter the revelant constraint column
333+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
330334 to the negative sum of the other parameters, effectively representing that
331335 parameter as a function of the other parameters. This dependent
332336 parameter is indicated by a -1 in this array, the independent parameters
@@ -550,9 +554,10 @@ def model(
550554 :param constraints_loc: Constraints for location model. Can be one of the following:
551555
552556 - np.ndarray:
553- Array with constraints in rows and model parameters in columns.
554- Each constraint contains non-zero entries for the a of parameters that
555- has to sum to zero. This constraint is enforced by binding one parameter
557+ Array with constraints in columns and model parameters in rows.
558+ Each constraint contains non-zero entries for the constrained parameters that
559+ have to sum to zero. For a non-constrained parameter the revelant constraint column
560+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
556561 to the negative sum of the other parameters, effectively representing that
557562 parameter as a function of the other parameters. This dependent
558563 parameter is indicated by a -1 in this array, the independent parameters
@@ -583,9 +588,10 @@ def model(
583588 :param constraints_scale: Constraints for scale model. Can be one of the following:
584589
585590 - np.ndarray:
586- Array with constraints in rows and model parameters in columns.
587- Each constraint contains non-zero entries for the a of parameters that
588- has to sum to zero. This constraint is enforced by binding one parameter
591+ Array with constraints in columns and model parameters in rows.
592+ Each constraint contains non-zero entries for the constrained parameters that
593+ have to sum to zero. For a non-constrained parameter the revelant constraint column
594+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
589595 to the negative sum of the other parameters, effectively representing that
590596 parameter as a function of the other parameters. This dependent
591597 parameter is indicated by a -1 in this array, the independent parameters
@@ -707,9 +713,10 @@ def residuals(
707713 :param constraints_loc: Constraints for location model. Can be one of the following:
708714
709715 - np.ndarray:
710- Array with constraints in rows and model parameters in columns.
711- Each constraint contains non-zero entries for the a of parameters that
712- has to sum to zero. This constraint is enforced by binding one parameter
716+ Array with constraints in columns and model parameters in rows.
717+ Each constraint contains non-zero entries for the constrained parameters that
718+ have to sum to zero. For a non-constrained parameter the revelant constraint column
719+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
713720 to the negative sum of the other parameters, effectively representing that
714721 parameter as a function of the other parameters. This dependent
715722 parameter is indicated by a -1 in this array, the independent parameters
@@ -740,9 +747,10 @@ def residuals(
740747 :param constraints_scale: Constraints for scale model. Can be one of the following:
741748
742749 - np.ndarray:
743- Array with constraints in rows and model parameters in columns.
744- Each constraint contains non-zero entries for the a of parameters that
745- has to sum to zero. This constraint is enforced by binding one parameter
750+ Array with constraints in columns and model parameters in rows.
751+ Each constraint contains non-zero entries for the constrained parameters that
752+ have to sum to zero. For a non-constrained parameter the revelant constraint column
753+ contains 1 in the parameter row. This constraint is enforced by binding one parameter
746754 to the negative sum of the other parameters, effectively representing that
747755 parameter as a function of the other parameters. This dependent
748756 parameter is indicated by a -1 in this array, the independent parameters
0 commit comments