mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Fixed some typos in the svd specs
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402649
This commit is contained in:
parent
1b08adbcad
commit
0307cb1de6
@ -767,10 +767,10 @@ namespace dlib
|
|||||||
);
|
);
|
||||||
/*!
|
/*!
|
||||||
requires
|
requires
|
||||||
- a.nr() >= a.nc()
|
- m.nr() >= m.nc()
|
||||||
ensures
|
ensures
|
||||||
- computes the singular value decomposition of matrix a
|
- computes the singular value decomposition of matrix m
|
||||||
- a == subm(#u,get_rect(a))*diagm(#w)*trans(#v)
|
- m == subm(#u,get_rect(m))*diagm(#w)*trans(#v)
|
||||||
- trans(#u)*#u == identity matrix
|
- trans(#u)*#u == identity matrix
|
||||||
- trans(#v)*#v == identity matrix
|
- trans(#v)*#v == identity matrix
|
||||||
- #w == the singular values of the matrix m in no
|
- #w == the singular values of the matrix m in no
|
||||||
@ -806,8 +806,7 @@ namespace dlib
|
|||||||
- trans(#u)*#u == identity matrix
|
- trans(#u)*#u == identity matrix
|
||||||
- trans(#v)*#v == identity matrix
|
- trans(#v)*#v == identity matrix
|
||||||
- #w == the singular values of the matrix m in no
|
- #w == the singular values of the matrix m in no
|
||||||
particular order. All non-diagonal elements of #w are
|
particular order.
|
||||||
set to 0.
|
|
||||||
- #u.nr() == m.nr()
|
- #u.nr() == m.nr()
|
||||||
- #u.nc() == m.nc()
|
- #u.nc() == m.nc()
|
||||||
- #w.nr() == m.nc()
|
- #w.nr() == m.nc()
|
||||||
|
Loading…
Reference in New Issue
Block a user