f07te solves a real triangular system of linear equations with multiple right-hand sides, AX=B or ATX=B.

Syntax

C#
public static void f07te(
	string uplo,
	string trans,
	string diag,
	int n,
	int nrhs,
	double[,] a,
	double[,] b,
	out int info
)
Visual Basic
Public Shared Sub f07te ( _
	uplo As String, _
	trans As String, _
	diag As String, _
	n As Integer, _
	nrhs As Integer, _
	a As Double(,), _
	b As Double(,), _
	<OutAttribute> ByRef info As Integer _
)
Visual C++
public:
static void f07te(
	String^ uplo, 
	String^ trans, 
	String^ diag, 
	int n, 
	int nrhs, 
	array<double,2>^ a, 
	array<double,2>^ b, 
	[OutAttribute] int% info
)
F#
static member f07te : 
        uplo : string * 
        trans : string * 
        diag : string * 
        n : int * 
        nrhs : int * 
        a : float[,] * 
        b : float[,] * 
        info : int byref -> unit 

Parameters

uplo
Type: System..::..String
On entry: specifies whether A is upper or lower triangular.
uplo="U"
A is upper triangular.
uplo="L"
A is lower triangular.
Constraint: uplo="U" or "L".
trans
Type: System..::..String
On entry: indicates the form of the equations.
trans="N"
The equations are of the form AX=B.
trans="T" or "C"
The equations are of the form ATX=B.
Constraint: trans="N", "T" or "C".
diag
Type: System..::..String
On entry: indicates whether A is a nonunit or unit triangular matrix.
diag="N"
A is a nonunit triangular matrix.
diag="U"
A is a unit triangular matrix; the diagonal elements are not referenced and are assumed to be 1.
Constraint: diag="N" or "U".
n
Type: System..::..Int32
On entry: n, the order of the matrix A.
Constraint: n0.
nrhs
Type: System..::..Int32
On entry: r, the number of right-hand sides.
Constraint: nrhs0.
a
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1max1,n
Note: the second dimension of the array a must be at least max1,n.
On entry: the n by n triangular matrix A.
  • If uplo="U", A is upper triangular and the elements of the array below the diagonal are not referenced.
  • If uplo="L", A is lower triangular and the elements of the array above the diagonal are not referenced.
  • If diag="U", the diagonal elements of A are assumed to be 1, and are not referenced.
b
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1max1,n
Note: the second dimension of the array b must be at least max1,nrhs.
On entry: the n by r right-hand side matrix B.
On exit: the n by r solution matrix X.
info
Type: System..::..Int32%
On exit: info=0 unless the method detects an error (see [Error Indicators and Warnings]).

Description

f07te solves a real triangular system of linear equations AX=B or ATX=B.

References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1989) The accuracy of solutions to triangular systems SIAM J. Numer. Anal. 26 1252–1265

Error Indicators and Warnings

Some error messages may refer to parameters that are dropped from this interface (LDA, LDB) In these cases, an error in another parameter has usually caused an incorrect value to be inferred.
info<0
If info=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.
info>0
Element value of the diagonal is exactly zero. A is singular and the solution has not been computed.
ifail=-9000
An error occured, see message report.
ifail=-6000
Invalid Parameters value
ifail=-4000
Invalid dimension for array value
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value
ifail=-6000
Invalid Parameters value

Accuracy

The solutions of triangular systems of equations are usually computed to high accuracy. See Higham (1989).
For each right-hand side vector b, the computed solution x is the exact solution of a perturbed system of equations A+Ex=b, where
EcnεA,
cn is a modest linear function of n, and ε is the machine precision.
If x^ is the true solution, then the computed solution x satisfies a forward error bound of the form
x-x^xcncondA,xε,   provided  cncondA,xε<1,
where condA,x=A-1Ax/x.
Note that condA,xcondA=A-1AκA; condA,x can be much smaller than condA and it is also possible for condAT to be much larger (or smaller) than condA.
Forward and backward error bounds can be computed by calling f07th, and an estimate for κA can be obtained by calling (F07TGF not in this release) with norm="I".

Parallelism and Performance

None.

Further Comments

The total number of floating-point operations is approximately n2r.
The complex analogue of this method is (F07TSF not in this release).

Example

This example solves the system of equations AX=B, where
A=4.300.000.000.00-3.96-4.870.000.000.400.31-8.020.00-0.270.07-5.950.12  and  B=-12.90-21.5016.7514.93-17.556.33-11.048.09.

Example program (C#): f07tee.cs

Example program data: f07tee.d

Example program results: f07tee.r

See Also