Commit 0b7896c9 authored by Davis King's avatar Davis King

Fixed out of date docs

parent b5b061f9
......@@ -67,7 +67,7 @@ namespace dlib
- a is a sparse vector
- b is a sparse vector
ensures
- returns exp(-gamma * sparse_vector::distance_squared(a,b))
- returns exp(-gamma * distance_squared(a,b))
!*/
sparse_radial_basis_kernel& operator= (
......@@ -173,7 +173,7 @@ namespace dlib
- a is a sparse vector
- b is a sparse vector
ensures
- returns tanh(gamma * sparse_vector::dot(a,b) + coef)
- returns tanh(gamma * dot(a,b) + coef)
!*/
sparse_sigmoid_kernel& operator= (
......@@ -285,7 +285,7 @@ namespace dlib
- a is a sparse vector
- b is a sparse vector
ensures
- returns pow(gamma * sparse_vector::dot(a,b) + coef, degree)
- returns pow(gamma * dot(a,b) + coef, degree)
!*/
sparse_polynomial_kernel& operator= (
......@@ -362,7 +362,7 @@ namespace dlib
- a is a sparse vector
- b is a sparse vector
ensures
- returns sparse_vector::dot(a,b)
- returns dot(a,b)
!*/
bool operator== (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment