Skip to content

Commit

Permalink
Merge pull request #223 from JuliaRobotics/22Q4/fix/meanmkd
Browse files Browse the repository at this point in the history
fix mean of mkd function
  • Loading branch information
dehann committed Dec 27, 2022
2 parents c62e7f5 + 23b06ca commit 249e9dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ApproxManifoldProducts"
uuid = "9bbbb610-88a1-53cd-9763-118ce10c1f89"
keywords = ["MM-iSAMv2", "SLAM", "inference", "sum-product", "belief-propagation", "nonparametric", "manifolds", "functional"]
version = "0.6.1"
version = "0.6.2"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
Expand Down
2 changes: 1 addition & 1 deletion src/CommonUtils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function _getManifoldFullOrPart(mkd::ManifoldKernelDensity, aspartial::Bool=true
end

function Statistics.mean(mkd::ManifoldKernelDensity, aspartial::Bool=true; kwargs...)
return mean(_getManifoldFullOrPart(mkd,aspartial), getPoints(mkd); kwargs...)
return mean(_getManifoldFullOrPart(mkd,aspartial), getPoints(mkd, aspartial); kwargs...)
end
"""
$SIGNATURES
Expand Down

0 comments on commit 249e9dc

Please sign in to comment.