-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parametric getParametricMeasurement and CalcFactorMahalanobis #1140
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1140 +/- ##
==========================================
+ Coverage 70.27% 72.27% +2.00%
==========================================
Files 55 55
Lines 4282 4638 +356
==========================================
+ Hits 3009 3352 +343
- Misses 1273 1286 +13
Continue to review full report at Codecov.
|
cfp.calcfactor!(res, cfp.meanVal, variables...) | ||
res = Vector{eltype(variables[1])}(undef, length(cfp.meas)) | ||
iΣ = cfp.iΣ | ||
cfp.calcfactor!(res, cfp.meas, variables...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, this is where the action is at (to consolidate nonparametric and parametric) and looks right to me, thanks!
PS, afterward we can worry about expanding both '(measurement..., variables...)'
A step towards consolidation creates residual using
eltype
of variable[1].residual not buffered though, but not to bad.