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
Make cov()'s corrected argument a keyword argument and cleanup docstrings
For consistency with var and std. Also remove methods which are no longer needed
now that deprecations have been removed. Add types to signatures in docstrings.
# This ugly hack is necessary to make the method below considered more specific than the deprecated method. When the old keyword version has been completely deprecated, these two methods can be merged
# This ugly hack is necessary to make the method below considered more specific than the deprecated method. When the old keyword version has been completely deprecated, these two methods can be merged
# This ugly hack is necessary to make the method below considered more specific than the deprecated method. When the old keyword version has been completely deprecated, these two methods can be merged
covm(X, _vmean(X, vardim), Y, _vmean(Y, vardim), vardim, corrected)
385
-
# This ugly hack is necessary to make the method below considered more specific than the deprecated method. When the old keyword version has been completely deprecated, these methods can be merged
386
-
cov(x::AbstractVector, Y::AbstractMatrix) =cov(x, Y, 1, true)
387
-
cov(X::AbstractMatrix, y::AbstractVector) =cov(X, y, 1, true)
388
-
cov(X::AbstractMatrix, Y::AbstractMatrix) =cov(X, Y, 1, true)
0 commit comments