NAG FL Interface
f11mlf (direct_​real_​gen_​norm)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f11mlf computes the 1-norm, the -norm or the maximum absolute value of the elements of a real, square, sparse matrix which is held in compressed column (Harwell–Boeing) format.

2 Specification

Fortran Interface
Subroutine f11mlf ( norm, anorm, n, icolzp, irowix, a, ifail)
Integer, Intent (In) :: n, icolzp(*), irowix(*)
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: a(*)
Real (Kind=nag_wp), Intent (Out) :: anorm
Character (1), Intent (In) :: norm
C Header Interface
#include <nag.h>
void  f11mlf_ (const char *norm, double *anorm, const Integer *n, const Integer icolzp[], const Integer irowix[], const double a[], Integer *ifail, const Charlen length_norm)
The routine may be called by the names f11mlf or nagf_sparse_direct_real_gen_norm.

3 Description

f11mlf computes various quantities relating to norms of a real, sparse n×n matrix A presented in compressed column (Harwell–Boeing) format.

4 References

None.

5 Arguments

1: norm Character(1) Input
On entry: specifies the value to be returned in anorm.
norm='1' or 'O'
The 1-norm A1 of the matrix is computed, that is max1jni=1n|Aij|.
norm='I'
The -norm A of the matrix is computed, that is max1in j=1n |Aij|.
norm='M'
The value max1i,jn|Aij| (not a norm).
Constraint: norm='1', 'O', 'I' or 'M'.
2: anorm Real (Kind=nag_wp) Output
On exit: the computed quantity relating the matrix.
3: n Integer Input
On entry: n, the order of the matrix A.
Constraint: n0.
4: icolzp(*) Integer array Input
Note: the dimension of the array icolzp must be at least n+1.
On entry: the new column index array of sparse matrix A. See Section 2.1.3 in the F11 Chapter Introduction.
5: irowix(*) Integer array Input
Note: the dimension of the array irowix must be at least icolzp(n+1)-1, the number of nonzeros of the sparse matrix A.
On entry: the row index array of sparse matrix A. See Section 2.1.3 in the F11 Chapter Introduction.
6: a(*) Real (Kind=nag_wp) array Input
Note: the dimension of the array a must be at least icolzp(n+1)-1, the number of nonzeros of the sparse matrix A.
On entry: the array of nonzero values in the sparse matrix A.
7: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, n=value.
Constraint: n0.
On entry, norm=value.
Constraint: norm='1', 'O', 'I' or 'M'.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

f11mlf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

This example computes norms and maximum absolute value of the matrix A, where
A=( 2.00 1.00 0 0 0 0 0 1.00 -1.00 0 4.00 0 1.00 0 1.00 0 0 0 1.00 2.00 0 -2.00 0 0 3.00 ) .  

10.1 Program Text

Program Text (f11mlfe.f90)

10.2 Program Data

Program Data (f11mlfe.d)

10.3 Program Results

Program Results (f11mlfe.r)