Home
last modified time | relevance | path

Searched refs:computeSVD (Results 1 – 25 of 25) sorted by relevance

/dports/math/openturns/openturns-1.18/python/test/
H A Dt_Matrix_decomposition.py38 result1, u, v = matrix1.computeSVD(True)
40 result1, u, v = matrix1.computeSVD(False)
52 result1, u, v = matrix1.computeSVD(True)
54 result1, u, v = matrix1.computeSVD(False)
66 result1, u, v = matrix1.computeSVD(True)
/dports/devel/spark/spark-2.1.1/mllib/src/test/scala/org/apache/spark/mllib/linalg/distributed/
H A DIndexedRowMatrixSuite.scala127 val svd = A.computeSVD(n, computeU = true)
141 val svd = A.computeSVD(k, computeU = true)
152 A.computeSVD(-1)
H A DRowMatrixSuite.scala147 val svd = mat.computeSVD(k, computeU = true, 1e-9, 300, 1e-10, mode)
161 val svdWithoutU = mat.computeSVD(1, computeU = false, 1e-9, 300, 1e-10, mode)
171 val svd = mat.computeSVD(2, computeU = true, 1e-6, 300, 1e-10, mode)
183 mat.computeSVD(-1)
319 val svd = mat.computeSVD(1, computeU = true)
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_Matrix_decomposition.cxx54 result1 = matrix1.computeSVD(u, vT, true); in testSVD()
62 result1 = matrix1.computeSVD(u, vT, false); in testSVD()
/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/mllib/linalg/distributed/
H A DIndexedRowMatrix.scala157 def computeSVD( method
165 val svd = toRowMatrix().computeSVD(k, computeU, rCond)
H A DRowMatrix.scala186 def computeSVD( method
194 computeSVD(k, computeU, rCond, maxIter, tol, "auto")
211 private[mllib] def computeSVD(
/dports/math/openturns/openturns-1.18/lib/src/Base/Type/
H A DMatrix.cxx249 Point Matrix::computeSVD(Matrix & u, in computeSVD() function in Matrix
254 …return getImplementation()->computeSVD(*(u.getImplementation()), *(vT.getImplementation()), fullSV… in computeSVD()
H A DIdentityMatrix.cxx152 Point IdentityMatrix::computeSVD(Matrix & u, in computeSVD() function in IdentityMatrix
H A DMatrixImplementation.cxx1332 Point MatrixImplementation::computeSVD(MatrixImplementation & u, in computeSVD() function in MatrixImplementation
/dports/devel/spark/spark-2.1.1/examples/src/main/scala/org/apache/spark/examples/mllib/
H A DTallSkinnySVD.scala55 val svd = mat.computeSVD(mat.numCols().toInt)
H A DSVDExample.scala49 val svd: SingularValueDecomposition[RowMatrix, Matrix] = mat.computeSVD(5, computeU = true)
/dports/math/openturns/openturns-1.18/lib/src/Base/Type/openturns/
H A DIdentityMatrix.hxx103 Point computeSVD(Matrix & uOut,
H A DMatrix.hxx163 Point computeSVD(Matrix & uOut,
H A DMatrixImplementation.hxx256 Point computeSVD(MatrixImplementation & uOut,
/dports/devel/spark/spark-2.1.1/examples/src/main/java/org/apache/spark/examples/mllib/
H A DJavaSVDExample.java58 SingularValueDecomposition<RowMatrix, Matrix> svd = mat.computeSVD(3, true, 1.0E-9d); in main()
/dports/math/openturns/openturns-1.18/lib/src/Uncertainty/Process/
H A DKarhunenLoeveSVDAlgorithm.cxx238 svd = C.computeSVD(Uc, VTc, false, false); in run()
283 svd = T.computeSVD(Uc, VTc, false, false); in run()
303 svd = designMatrix.computeSVD(U, Vt, false, false); in run()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/svd/
H A DSparkSingularValueDecomposer.java48 …final SingularValueDecomposition<RowMatrix, Matrix> svd = mat.computeSVD((int) mat.numCols(), true… in createSVD()
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/LinearAlgebra/src/
H A DFactorSVD.cpp288 computeSVD( true, &values(0), &leftVectors(0,0), &rightVectors(0,0) ); in getSingularValuesAndVectors()
302 computeSVD( false, &values(0), NULL, NULL ); in getSingularValues()
307 void FactorSVDRep<T>::computeSVD( bool computeVectors, RType* values, T* leftVectors, T* rightVecto… in computeSVD() function in SimTK::FactorSVDRep
H A DFactorSVDRep.h177 void computeSVD( bool, RType*, T*, T* );
/dports/math/openturns/openturns-1.18/python/src/
H A DMatrix_doc.i.in160 computeSVD
171 %feature("docstring") OT::Matrix::computeSVD
215 >>> singular_values, U, VT = M.computeSVD(True)
/dports/math/openturns/openturns-1.18/lib/src/Base/Algo/
H A DSVDMethod.cxx114 singularValues_ = psiAk.computeSVD(u_, vT_, false, false); // fullSVD, keepIntact in update()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/copynumber/denoising/
H A DHDF5SVDReadCountPanelOfNormals.java326 .computeSVD(numEigensamples, true, EPSILON); in create()
/dports/science/madness/madness-ebb3fd7/src/madness/tensor/
H A Dgentensor.h441 this->computeSVD(targs.thresh,values_eff);
907 void computeSVD(const double& eps,const Tensor<T>& values_eff) {
/dports/java/java3d/java3d-1.5.2/vecmath/src/javax/vecmath/
H A DGMatrix.java1593 return computeSVD(this, U, W, V); in SVD()
1961 static int computeSVD(GMatrix mat, GMatrix U, GMatrix W, GMatrix V) { in computeSVD() method in GMatrix
/dports/math/openturns/openturns-1.18/
H A DChangeLog1283 * Renamed Matrix::computeSingularValues(u, vT) to computeSVD(u, vT)