f07tj computes the inverse of a real triangular matrix.
Syntax
C# |
---|
public static void f07tj( string uplo, string diag, int n, double[,] a, out int info ) |
Visual Basic |
---|
Public Shared Sub f07tj ( _ uplo As String, _ diag As String, _ n As Integer, _ a As Double(,), _ <OutAttribute> ByRef info As Integer _ ) |
Visual C++ |
---|
public: static void f07tj( String^ uplo, String^ diag, int n, array<double,2>^ a, [OutAttribute] int% info ) |
F# |
---|
static member f07tj : uplo : string * diag : string * n : int * a : float[,] * info : int byref -> unit |
Parameters
- uplo
- Type: System..::..StringOn entry: specifies whether is upper or lower triangular.
- is upper triangular.
- is lower triangular.
Constraint: or .
- diag
- Type: System..::..StringOn entry: indicates whether is a nonunit or unit triangular matrix.
- is a nonunit triangular matrix.
- is a unit triangular matrix; the diagonal elements are not referenced and are assumed to be .
Constraint: or .
- n
- Type: System..::..Int32On entry: , the order of the matrix .Constraint: .
- a
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array a must be at least .On entry: the by triangular matrix .
- If , is upper triangular and the elements of the array below the diagonal are not referenced.
- If , is lower triangular and the elements of the array above the diagonal are not referenced.
- If , the diagonal elements of are assumed to be , and are not referenced.
On exit: is overwritten by , using the same storage format as described above.
- info
- Type: System..::..Int32%On exit: unless the method detects an error (see [Error Indicators and Warnings]).
Description
f07tj forms the inverse of a real triangular matrix . Note that the inverse of an upper (lower) triangular matrix is also upper (lower) triangular.
References
Du Croz J J and Higham N J (1992) Stability of methods for matrix inversion IMA J. Numer. Anal. 12 1–19
Error Indicators and Warnings
Some error messages may refer to parameters that are dropped from this interface
(LDA) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
- If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
Element of the diagonal is exactly zero. is singular its inverse cannot be computed.
Accuracy
The computed inverse satisfies
where is a modest linear function of , and is the machine precision.
Note that a similar bound for cannot be guaranteed, although it is almost always satisfied.
The computed inverse satisfies the forward error bound
See Du Croz and Higham (1992).
Parallelism and Performance
None.
Further Comments
The total number of floating-point operations is approximately .
The complex analogue of this method is (F07TWF not in this release).
Example
This example computes the inverse of the matrix , where
Example program (C#): f07tje.cs