Fixed some typos in the svd specs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402649
This commit is contained in:
Davis King 2008-11-10 22:10:59 +00:00
parent 1b08adbcad
commit 0307cb1de6

View File

@ -767,10 +767,10 @@ namespace dlib
);
/*!
requires
- a.nr() >= a.nc()
- m.nr() >= m.nc()
ensures
- computes the singular value decomposition of matrix a
- a == subm(#u,get_rect(a))*diagm(#w)*trans(#v)
- computes the singular value decomposition of matrix m
- m == subm(#u,get_rect(m))*diagm(#w)*trans(#v)
- trans(#u)*#u == identity matrix
- trans(#v)*#v == identity matrix
- #w == the singular values of the matrix m in no
@ -806,8 +806,7 @@ namespace dlib
- trans(#u)*#u == identity matrix
- trans(#v)*#v == identity matrix
- #w == the singular values of the matrix m in no
particular order. All non-diagonal elements of #w are
set to 0.
particular order.
- #u.nr() == m.nr()
- #u.nc() == m.nc()
- #w.nr() == m.nc()