@@ -548,31 +548,31 @@ class LinearFit:
548548
549549 Attributes
550550 ----------
551- dependent_variable : np. ndarray (1xN)
551+ dependent_variable : ndarray (1xN)
552552 Dependent_variables of the linear equation system (N equations, M unknown coefficients)
553- inverse_covariance_matrix : np. ndarray (NxN)
553+ inverse_covariance_matrix : ndarray (NxN)
554554 Inverse covariance matrix corresponding to the dependent_variable.
555555 i.e. data weights proportional to 1/sigma**2 where sigma=uncertainty
556- independent_variable : np. ndarray (MxN)
556+ independent_variable : ndarray (MxN)
557557 The independent_variables that are multiplied by the unknown coefficients
558558
559559 Calculated Attributes
560560 ----------
561- p : np. ndarray
561+ p : ndarray
562562 Coefficients of the solution
563- p_formal_uncertainty : np. ndarray
563+ p_formal_uncertainty : ndarray
564564 Formal uncertainty of the coefficients
565- p_formal_covariance_matrix : np. ndarray
565+ p_formal_covariance_matrix : ndarray
566566 Formal covariance matrix of the coefficients (not rescaled)
567- p_normalised_uncertainty : np. ndarray
567+ p_normalised_uncertainty : ndarray
568568 Normalised uncertainty (chi2 = 1) of the coefficients
569- p_normalised_covariance_matrix : np. ndarray
569+ p_normalised_covariance_matrix : ndarray
570570 Normalised covariance matrix of the coefficients (rescaled to yield chi2=1)
571- p_correlation_matrix : np. ndarray
571+ p_correlation_matrix : ndarray
572572 Coefficient correlation matrix
573- fit : np. ndarray
573+ fit : ndarray
574574 Values of the best-fit model
575- residuals : np. ndarray
575+ residuals : ndarray
576576 Observed - Calculated (O-C) residuals
577577 chi2 : float
578578 Chi-square value of the best fit
0 commit comments