Home
last modified time | relevance | path

Searched refs:uMat (Results 1 – 10 of 10) sorted by relevance

/dports/math/singular/Singular-Release-4-2-1/kernel/linear_algebra/
H A DlinearAlgebra.cc137 pSwap = MATELEM(uMat, r, c); in luDecomp()
138 MATELEM(uMat, r, c) = MATELEM(uMat, bestR, c); in luDecomp()
204 matrix uMat; in luInverse() local
211 id_Delete((ideal*)&uMat,R); in luInverse()
238 matrix uMat; in luRank() local
245 id_Delete((ideal*)&uMat,R); in luRank()
254 int d = uMat->rows(); in upperRightTriangleInverse()
381 int m = uMat->rows(); int n = uMat->cols(); in luSolveViaLUDecomp()
1355 uMat = mpNew(rr, cc); in lduDecomp()
1421 pDelete(&MATELEM(uMat, r, col)); MATELEM(uMat, r, col) = NULL; in lduDecomp()
[all …]
H A DlinearAlgebra.h51 matrix &uMat, /**< [out] the upper row echelon matrix U */
138 const matrix uMat, /**< [in] (n x n)-matrix in upper right
201 const matrix uMat, /**< [in] upper right matrix of an LU-
263 const matrix uMat, /**< [in] upper right matrix of an LU-
321 const matrix uMat, /**< [in] upper right matrix of an LDU-
562 matrix &uMat, /**< [out] the upper row echelon matrix U */
/dports/math/py-sympy/sympy-1.9/sympy/physics/quantum/tests/
H A Dtest_gate.py45 uMat = Matrix([[a, b], [c, d]])
48 u1 = UGate((0,), uMat)
49 assert represent(u1, nqubits=1) == uMat
54 u2 = UGate((1,), uMat)
116 uMat = Matrix([[a, b], [c, d]])
120 u1 = UGate((0,), uMat)
129 u2 = UGate((1,), uMat)
H A Dtest_printing.py238 uMat = Matrix([[a, b], [c, d]])
239 g = UGate((0,), uMat)
245 uMat = Matrix([[a, b], [c, d]])
250 g4 = UGate((0,), uMat)
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudaoptflow/src/
H A Dbrox.cpp176 …NCVMatrixReuse<Ncv32f> uMat(uMemSeg, static_cast<Ncv32u>(textureAlignment), u.cols, u.rows, static… in calc() local
179 size_t bufSize = getBufSize(desc, frame0Mat, frame1Mat, uMat, vMat, textureAlignment); in calc()
184 …ncvSafeCall( NCVBroxOpticalFlow(desc, gpuAllocator, frame0Mat, frame1Mat, uMat, vMat, StreamAccess… in calc()
/dports/math/singular/Singular-Release-4-2-1/Singular/
H A Dextra.cc791 matrix pMat; matrix lMat; matrix dMat; matrix uMat; in jjSYSTEM() local
793 lduDecomp(aMat, pMat, lMat, dMat, uMat, l, u, prodLU); in jjSYSTEM()
799 L->m[3].rtyp = MATRIX_CMD; L->m[3].data=(void*)uMat; in jjSYSTEM()
847 matrix uMat = (matrix)h->next->next->next->Data(); in jjSYSTEM() local
871 if (dMat->cols() != uMat->rows()) in jjSYSTEM()
874 dMat->rows(), dMat->cols(), uMat->rows(), uMat->cols(), in jjSYSTEM()
878 if (uMat->rows() != bVec->rows()) in jjSYSTEM()
881 uMat->rows(), uMat->cols(), bVec->rows()); in jjSYSTEM()
884 solvable = luSolveViaLDUDecomp(pMat, lMat, dMat, uMat, l, u, lTimesU, in jjSYSTEM()
H A Diparith.cc4562 matrix uMat; in jjLU_DECOMP() local
4564 luDecomp(mat, pMat, lMat, uMat); in jjLU_DECOMP()
7523 int rr = uMat->rows(); in jjLU_INVERSE()
7524 int cc = uMat->cols(); in jjLU_INVERSE()
7533 || (!idIsConstant((ideal)uMat)) in jjLU_INVERSE()
7590 matrix uMat = (matrix)v->next->next->Data(); in jjLU_SOLVE() local
7605 if (lMat->rows() != uMat->rows()) in jjLU_SOLVE()
7608 lMat->rows(), lMat->cols(), uMat->rows(), uMat->cols()); in jjLU_SOLVE()
7611 if (uMat->rows() != bVec->rows()) in jjLU_SOLVE()
7614 uMat->rows(), uMat->cols(), bVec->rows()); in jjLU_SOLVE()
[all …]
/dports/math/singular/Singular-Release-4-2-1/kernel/combinatorics/
H A Dhilb.cc2277 matrix uMat; in HilbertSeries_OrbitData() local
2284 luDecomp(gMat, pMat, lMat, uMat, R); in HilbertSeries_OrbitData()
2285 luSolveViaLUDecomp(pMat, lMat, uMat, cMat, H_serVec, Hnot); in HilbertSeries_OrbitData()
2295 mp_Delete(&uMat, R); in HilbertSeries_OrbitData()
/dports/biology/mrbayes/MrBayes-3.2.7/src/
H A Dutils.c94 void ComputeLandU (int dim, MrBFlt **aMat, MrBFlt **lMat, MrBFlt **uMat);
10240 void ComputeLandU (int dim, MrBFlt **aMat, MrBFlt **lMat, MrBFlt **uMat) in ComputeLandU() argument
10264 uMat[row][col] = aMat[row][col]; in ComputeLandU()
10270 uMat[row][col] = 0.0; in ComputeLandU()
11090 MrBFlt *bVec, **lMat, **uMat; in GaussianElimination() local
11093 uMat = AllocateSquareDoubleMatrix (dim); in GaussianElimination()
11101 ComputeLandU (dim, a, lMat, uMat); in GaussianElimination()
11114 BackSubstitutionRow (dim, uMat, bVec); in GaussianElimination()
11122 FreeSquareDoubleMatrix (uMat); in GaussianElimination()
/dports/math/R-cran-VGAM/VGAM/R/
H A Dfamily.others.R2208 uMat <- cbind(u0, rep(0, nn), u1) functionVar
2267 gk <- alpha[1:(jay + 1)][(jay + 1):1] %*% uMat[1:(jay + 1), ]