You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm sort of confused with the norms after seeing multiple issues.
And it is not exactly clear from documentation:
If I have points with x and y with standard errors delta_y (standard deviations)
Should I curvefit(f, x, y, 1/delta_y^2) or curvefit(f, x, y, 1/delta_y)
This confused me so many times and I wish this simple example would be included in the docs
The text was updated successfully, but these errors were encountered:
From the readme, w is the inverse covariance matrix. So if delta_y is the standard derviation, i.e. the square root of the covariance matrix (or vector in this case), you want 1/delta^2
I'm sort of confused with the norms after seeing multiple issues.
And it is not exactly clear from documentation:
If I have points with
x
andy
with standard errorsdelta_y
(standard deviations)Should I
curvefit(f, x, y, 1/delta_y^2)
orcurvefit(f, x, y, 1/delta_y)
This confused me so many times and I wish this simple example would be included in the docs
The text was updated successfully, but these errors were encountered: