The euclidean norm of a vector sqrt ( X' * X )
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=ip), | intent(in) | :: | n | |||
real(kind=wp), | intent(in) | :: | x(*) | |||
integer(kind=ip), | intent(in) | :: | incx |
function dnrm2 (n,dx,incx) implicit none integer, intent(in) :: n,incx double precision, intent(in) :: dx(*) double precision :: dnrm2 end function dnrm2