You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`a`: Shall be a rank-n `real` or `complex` array containing the data. It is an `intent(in)` argument.
1483
+
1484
+
`nrm`: if `dim` is absent, shall be a scalar with the norm evaluated over all the elements of the array. Otherwise, an array of rank `n-1`, and a shape similar
1485
+
to that of `a` with dimension `dim` dropped.
1486
+
1487
+
`order`: Shall be an `integer` value or a `character` flag that specifies the norm type, as follows. It is an `intent(in)` argument.
|`huge(0)`|`'inf', 'Inf'`| Maximum absolute value \( \max_i{ \left|a_i\right| } \)|
1496
+
1497
+
`dim` (optional): Shall be a scalar `integer` value with a value in the range from `1` to `n`, where `n` is the rank of the array. It is an `intent(in)` argument.
1498
+
1499
+
`err` (optional): Shall be a `type(linalg_state_type)` value. This is an `intent(out)` argument. If `err` is not present, the function is `pure`.
1500
+
1501
+
### Return value
1502
+
1503
+
By default, the return value `nrm` is a scalar, and contains the norm as evaluated over all elements of the generic-rank array \( A \).
1504
+
If the optional `dim` argument is present, `nrm` is a rank `n-1` array with the same shape as \( A \) except
1505
+
for dimension `dim`, that is collapsed. Each element of `nrm` contains the 1D norm of the elements of \( A \),
1506
+
evaluated along dimension `dim` only.
1507
+
1508
+
Raises `LINALG_ERROR` if the requested norm type is invalid.
1509
+
Raises `LINALG_VALUE_ERROR` if any of the arguments has an invalid size.
1510
+
If `err` is not present, exceptions trigger an `error stop`.
1511
+
1512
+
### Example
1513
+
1514
+
```fortran
1515
+
{!example/linalg/example_get_norm.f90!}
1516
+
```
1517
+
1518
+
## `norm` - Computes the vector norm of a generic-rank array.
1519
+
1520
+
### Status
1521
+
1522
+
Experimental
1523
+
1524
+
### Description
1525
+
1526
+
This function computes one of several vector norms of `real` or `complex` array \( A \), depending on
1527
+
the value of the `order` input argument. \( A \) may be an array of any rank.
|`huge(0)`|`'inf', 'Inf'`| Maximum absolute value \( \max_i{ \left|a_i\right| } \)|
1546
+
1547
+
`dim` (optional): Shall be a scalar `integer` value with a value in the range from `1` to `n`, where `n` is the rank of the array. It is an `intent(in)` argument.
1548
+
1549
+
`err` (optional): Shall be a `type(linalg_state_type)` value. This is an `intent(out)` argument. If `err` is not present, the function is `pure`.
1550
+
1551
+
### Return value
1552
+
1553
+
By default, the return value `x` is a scalar, and contains the norm as evaluated over all elements of the generic-rank array \( A \).
1554
+
If the optional `dim` argument is present, `x` is a rank `n-1` array with the same shape as \( A \) except
1555
+
for dimension `dim`, that is dropped. Each element of `x` contains the 1D norm of the elements of \( A \),
1556
+
evaluated along dimension `dim` only.
1557
+
1558
+
Raises `LINALG_ERROR` if the requested norm type is invalid.
1559
+
Raises `LINALG_VALUE_ERROR` if any of the arguments has an invalid size.
1560
+
If `err` is not present, exceptions trigger an `error stop`.
0 commit comments