Lines Matching refs:SVDMatrix
106 class SVDMatrix
110 SVDMatrix()
115 SVDMatrix(unsigned int rowSize, unsigned int colSize)
126 SVDMatrix(double *vals, unsigned int rowSize, unsigned int colSize)
138 SVDMatrix(const SVDMatrix &other)
144 SVDMatrix &operator=(const SVDMatrix &other)
150 virtual ~SVDMatrix()
179 SVDMatrix multiply(const SVDMatrix &other)
183 SVDMatrix dummy;
186 SVDMatrix result(rows, other.cols);
204 SVDMatrix transpose()
206 SVDMatrix result(cols, rows);
227 void assign(const SVDMatrix &other)
289 SingularValueDecomposition (const SVDMatrix &mat) :
308 SVDMatrix &getU();
314 SVDMatrix &getV();
342 SVDMatrix A;
343 SVDMatrix U;
346 SVDMatrix V;
383 U = SVDMatrix(m, nu);
384 V = SVDMatrix(n, n);
807 SVDMatrix &SingularValueDecomposition::getU()
817 SVDMatrix &SingularValueDecomposition::getV()
987 SVDMatrix mat(2, 2);
995 SVDMatrix U = svd.getU();
996 SVDMatrix V = svd.getV();
997 SVDMatrix Vt = V.transpose();
998 SVDMatrix UVt = U.multiply(Vt);