123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*Daala video codec
- Copyright (c) 2005-2007 Daala project contributors. All rights reserved.
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
- - Redistributions of source code must retain the above copyright notice, this
- list of conditions and the following disclaimer.
- - Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS”
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/
- #if !defined(_cpack_linalg_svd_H)
- # define _cpack_linalg_svd_H (1)
- /*Computes the singular value decomposition of a matrix into matrices
- U\Sigma V^T, where U and V are orthonormal and \Sigma is diagonal.
- _w: An _nrows by (_nrows+_ncols) matrix of storage for input and output.
- On input, the first _nrows rows contain the input matrix.
- On output, the first _nrows rows contain the columns of U, each
- scaled by the corresponding singular value.
- The caller must divide by the appropriate value to obtain a unit
- vector, if one is desired.
- The next _ncols rows contain the columns of V (_not_ V^T).
- _s: On output contains the squares of the _ncols singular values.
- _nrows: The number of rows of the matrix.
- _ncols: The number of columns of the matrix.
- Return: The estimated column rank of the matrix.*/
- int svd(double **_w,double *_s,int _nrows,int _ncols);
- /*Computes the Moore-Penrose pseudoinverse of a matrix using an SVD.
- _w: An _nrows by (_nrows+_ncols) matrix of storage for input and output.
- On input, the first _nrows rows contain the input matrix.
- On output, the first _nrows rows contain the transpose of the
- pseudoinverse.
- The next _ncols rows are temporary storage.
- On output the contents are undefined.
- _s: _ncols temporary values.
- On output the contents are undefined.
- _nrows: The number of rows of the matrix.
- _ncols: The number of columns of the matrix.
- Return: The estimated column rank of the matrix.*/
- int svd_pseudoinverse(double **_w,double *_s,int _nrows,int _ncols);
- #endif /*_cpack_linalg_svd_H*/
|