Home
last modified time | relevance | path

Searched refs:rhsMat (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dlapack.cpp1314 Mat rhsMat; in solve() local
1318 rhsMat = dst; in solve()
1322 rhsMat = Mat(m, nb, type); in solve()
1323 src2.copyTo(rhsMat); in solve()
1327 …lt = hal::QR32f(a.ptr<float>(), a.step, a.rows, a.cols, rhsMat.cols, rhsMat.ptr<float>(), rhsMat.s… in solve()
1329 …t = hal::QR64f(a.ptr<double>(), a.step, a.rows, a.cols, rhsMat.cols, rhsMat.ptr<double>(), rhsMat.… in solve()
1331 if (rhsMat.rows != dst.rows) in solve()
1332 rhsMat.rowRange(0, dst.rows).copyTo(dst); in solve()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/src/core/src/
H A DTeuchosMatrix.C734 TeuchosMatrix::svdSolve(const TeuchosMatrix& rhsMat, TeuchosMatrix& solMat) const in svdSolve() argument
739 queso_require_equal_to_msg(rhsMat.numRowsLocal(), nRows, "invalid rhsMat"); in svdSolve()
743 …queso_require_equal_to_msg(rhsMat.numCols(), solMat.numCols(), "rhsMat and solMat are not compatib… in svdSolve()
745 TeuchosVector rhsVec(m_env,rhsMat.map()); in svdSolve()
748 for (unsigned int j = 0; j < rhsMat.numCols(); ++j) { in svdSolve()
749 rhsVec = rhsMat.getColumn(j); in svdSolve()
H A DGslMatrix.C536 GslMatrix::svdSolve(const GslMatrix& rhsMat, GslMatrix& solMat) const in svdSolve() argument
541 queso_require_equal_to_msg(rhsMat.numRowsLocal(), nRows, "invalid rhsMat"); in svdSolve()
545 …queso_require_equal_to_msg(rhsMat.numCols(), solMat.numCols(), "rhsMat and solMat are not compatib… in svdSolve()
547 GslVector rhsVec(m_env,rhsMat.map()); in svdSolve()
550 for (unsigned int j = 0; j < rhsMat.numCols(); ++j) { in svdSolve()
551 rhsVec = rhsMat.getColumn(j); in svdSolve()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/src/core/inc/
H A DTeuchosMatrix.h184 …int svdSolve (const TeuchosMatrix& rhsMat, TeuchosMatrix& solMat) cons…
H A DGslMatrix.h194 int svdSolve (const GslMatrix& rhsMat, GslMatrix& solMat) const;