Normalises a vector.
More...
|
real(sp) function, dimension(size(a, 1)) | normalisesp (a, err, error) |
| Normalises a real single precision vector a. More...
|
|
real(dp) function, dimension(size(a, 1)) | normalisedp (a, err, error) |
| Normalises a real double precision vector a. More...
|
|
Normalises a vector.
Definition at line 221 of file maths.f90.
real(dp) function, dimension(size(a,1)) maths::normalise::normalisedp |
( |
real(dp), dimension(:), intent(in) |
a, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Normalises a real double precision vector a.
- Parameters
-
[in] | a | The vector to normalise |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2359 of file maths.f90.
real(sp) function, dimension(size(a,1)) maths::normalise::normalisesp |
( |
real(sp), dimension(:), intent(in) |
a, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Normalises a real single precision vector a.
- Parameters
-
[in] | a | The vector to normalise |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 2326 of file maths.f90.