nag_complex_lin_eqn_mult_rhs (f04adc) (PDF version)
f04 Chapter Contents
f04 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_complex_lin_eqn_mult_rhs (f04adc)

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_complex_lin_eqn_mult_rhs (f04adc) calculates the solution of a set of complex linear equations with multiple right-hand sides.

2  Specification

#include <nag.h>
#include <nagf04.h>
void  nag_complex_lin_eqn_mult_rhs (Integer n, Integer nrhs, Complex a[], Integer tda, const Complex b[], Integer tdb, Complex x[], Integer tdx, NagError *fail)

3  Description

Given a set of complex linear equations AX = B , the function first computes an LU  factorization of A  with partial pivoting, PA = LU , where P  is a permutation matrix, L  is lower triangular and U  is unit upper triangular. The columns x  of the solution X  are found by forward and backward substitution in Ly = Pb  and Ux = y , where b  is a column of the right-hand side matrix B .

4  References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Wilkinson J H and Reinsch C (1971) Handbook for Automatic Computation II, Linear Algebra Springer–Verlag

5  Arguments

1:     nIntegerInput
On entry: n , the order of the matrix A .
Constraint: n1 .
2:     nrhsIntegerInput
On entry: r , the number of right-hand sides.
Constraint: nrhs1 .
3:     a[n×tda]ComplexInput/Output
Note: the i,jth element of the matrix A is stored in a[i-1×tda+j-1].
On entry: the n  by n  matrix A .
On exit: A  is overwritten by the lower triangular matrix L  and the off-diagonal elements of the upper triangular matrix U . The unit diagonal elements of U  are not stored.
4:     tdaIntegerInput
On entry: the stride separating matrix column elements in the array a.
Constraint: tdan .
5:     b[n×tdb]const ComplexInput
Note: the i,jth element of the matrix B is stored in b[i-1×tdb+j-1].
On entry: the n  by r  right-hand side matrix B .
6:     tdbIntegerInput
On entry: the stride separating matrix column elements in the array b.
Constraint: tdbnrhs .
7:     x[n×tdx]ComplexOutput
Note: the i,jth element of the matrix X is stored in x[i-1×tdx+j-1].
On exit: the n  by r  solution matrix X . See also Section 6.
8:     tdxIntegerInput
On entry: the stride separating matrix column elements in the array x.
Constraint: tdxnrhs .
9:     failNagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_2_INT_ARG_LT
On entry, tda=value  while n=value . The arguments must satisfy tdan .
On entry, tdb=value  while nrhs=value . These arguments must satisfy tdbnrhs .
On entry, tdx=value  while nrhs=value . These arguments must satisfy tdxnrhs .
NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_INT_ARG_LT
On entry, n=value.
Constraint: n1.
On entry, nrhs=value.
Constraint: nrhs1.
NE_SINGULAR
The matrix A  is singular, possibly due to rounding errors.

7  Accuracy

The accuracy of the computed solution depends on the conditioning of the original matrix. For a detailed error analysis see page 106 of Wilkinson and Reinsch (1971).

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken by nag_complex_lin_eqn_mult_rhs (f04adc) is approximately proportional to n 3 .
The function may be called with the same array supplied for arguments b and x, in which case the solution vectors will overwrite the right-hand sides.

10  Example

To solve the set of linear equations AX = B  where
A = 1 1 + 2 i 2 + 10 i 1 + i 3 i -5 + 14 i 1 + i 5 i -8 + 20 i   and   B = 1 0 0 .

10.1  Program Text

Program Text (f04adce.c)

10.2  Program Data

Program Data (f04adce.d)

10.3  Program Results

Program Results (f04adce.r)


nag_complex_lin_eqn_mult_rhs (f04adc) (PDF version)
f04 Chapter Contents
f04 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2014