pub struct LUFactorizedTridiagonal<A>where
    A: Scalar,
{ pub a: Tridiagonal<A>, pub du2: Vec<A, Global>, pub ipiv: Vec<i32, Global>, pub a_opnorm_one: <A as Scalar>::Real, }
Expand description

Represents the LU factorization of a tridiagonal matrix A as A = P*L*U.

Fields

a: Tridiagonal<A>

A tridiagonal matrix which consists of

  • l : layout of raw matrix
  • dl: (n-1) multipliers that define the matrix L.
  • d : (n) diagonal elements of the upper triangular matrix U.
  • du: (n-1) elements of the first super-diagonal of U.
du2: Vec<A, Global>

(n-2) elements of the second super-diagonal of U.

ipiv: Vec<i32, Global>

The pivot indices that define the permutation matrix P.

a_opnorm_one: <A as Scalar>::Real

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
Estimates the reciprocal of the condition number of the tridiagonal matrix in 1-norm. Read more
Estimates the reciprocal of the condition number of the tridiagonal matrix in 1-norm. Read more
Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^T * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A^H * x = b with tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. Read more
Solves a system of linear equations A * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument. Read more
Solves a system of linear equations A^T * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument. Read more
Solves a system of linear equations A^H * x = b tridiagonal matrix A, where A is self, b is the argument, and x is the successful result. The value of x is also assigned to the argument. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.