compute (cv.SVD) - MATLAB File Help |
The operator that performs SVD
svd.compute(A)
svd.compute(A, 'OptionName', optionValue, ...)
A = u*diag(w)*vt
w
is to be processed, while u
and vt
will be set to empty
matrices. default falseu
and vt
matrices of sufficiently large
size for the further A
reconstruction; if, however, FullUV
flag is specified, u
and vt
will be full-size square
orthogonal matrices. default falseThe previously allocated u
, w
and vt
are released.
The operator performs the singular value decomposition of the
supplied matrix. The u
, vt
, and the vector of singular
values w
are stored in the structure. The same SVD structure
can be reused many times with different matrices. Each time, if
needed, the previous u
, vt
, and w
are reclaimed and the
new matrices are created.
Access | public |
Sealed | false |
Static | false |