Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
ca678867
Commit
ca678867
authored
Jun 15, 2013
by
Davis King
Browse files
clarified spec
parent
8ce9469a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
dlib/statistics/statistics_abstract.h
dlib/statistics/statistics_abstract.h
+7
-1
No files found.
dlib/statistics/statistics_abstract.h
View file @
ca678867
...
...
@@ -622,6 +622,7 @@ namespace dlib
- current_n() != 0
ensures
- returns the mean of all the x vectors presented to this object so far.
- The returned vector will have x_vector_size() dimensions.
!*/
const
column_matrix
mean_y
(
...
...
@@ -631,6 +632,7 @@ namespace dlib
- current_n() != 0
ensures
- returns the mean of all the y vectors presented to this object so far.
- The returned vector will have y_vector_size() dimensions.
!*/
const
general_matrix
covariance_xy
(
...
...
@@ -640,7 +642,11 @@ namespace dlib
- current_n() > 1
ensures
- returns the unbiased sample cross-covariance matrix for all the vector
pairs presented to this object so far.
pairs presented to this object so far. In particular, returns a matrix
M such that:
- M.nr() == x_vector_size()
- M.nc() == y_vector_size()
- M == the cross-covariance matrix of the data given to add().
!*/
const
running_cross_covariance
operator
+
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment