Uses of Class
dev.nm.algebra.linear.matrix.doubles.matrixtype.GivensMatrix
-
Packages that use GivensMatrix Package Description dev.nm.algebra.linear.matrix.doubles.factorization.eigen.qr dev.nm.algebra.linear.matrix.doubles.matrixtype -
-
Uses of GivensMatrix in dev.nm.algebra.linear.matrix.doubles.factorization.eigen.qr
Methods in dev.nm.algebra.linear.matrix.doubles.factorization.eigen.qr that return types with arguments of type GivensMatrix Modifier and Type Method Description List<GivensMatrix>SymmetricQRAlgorithm. Gs()Gets the list of Gk's produced in the process of diagonalizing the tridiagonal matrix. -
Uses of GivensMatrix in dev.nm.algebra.linear.matrix.doubles.matrixtype
Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype that return GivensMatrix Modifier and Type Method Description static GivensMatrixGivensMatrix. Ctor2x2(double c, double s)Same asnew GivensMatrix(2, 1, 2, c, s).static GivensMatrixGivensMatrix. CtorFromRho(int dim, int i, int j, double rho)Constructs a Givens matrix from ρ.static GivensMatrixGivensMatrix. CtorToRotateColumns(int dim, int j1, int j2, double a, double b)Constructs a Givens matrix such that [a b] * G = [* 0].static GivensMatrixGivensMatrix. CtorToRotateRows(int dim, int i1, int i2, double a, double b)Constructs a Givens matrix such that G * [a b]t = [* 0]t.static GivensMatrixGivensMatrix. CtorToZeroOutEntry(Matrix A, int i, int j)Constructs a Givens matrix such that G * A has 0 in the [i,j] entry.static GivensMatrixGivensMatrix. CtorToZeroOutEntryByTranspose(Matrix A, int i, int j)Constructs a Givens matrix such that Gt * A has 0 in the [i,j] entry.GivensMatrixGivensMatrix. deepCopy()GivensMatrixGivensMatrix. ONE()GivensMatrixGivensMatrix. t()Methods in dev.nm.algebra.linear.matrix.doubles.matrixtype with parameters of type GivensMatrix Modifier and Type Method Description static MatrixGivensMatrix. product(GivensMatrix[] Gs)Given an array of Givens matrices {Gi}, computes G, where G = G1 * G2 * ...Method parameters in dev.nm.algebra.linear.matrix.doubles.matrixtype with type arguments of type GivensMatrix Modifier and Type Method Description static MatrixGivensMatrix. product(List<GivensMatrix> Gs)Constructors in dev.nm.algebra.linear.matrix.doubles.matrixtype with parameters of type GivensMatrix Constructor Description GivensMatrix(GivensMatrix that)Copy constructor.
-