dmnorm Function

public pure function dmnorm(n, v, w)

This function routine computes the weighted max-norm of the vector of length N contained in the array V, with weights contained in the array w of length N: DMNORM = MAX(i=1,…,N) ABS(V(i))*W(i)

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n
real(kind=dp), intent(in) :: v(n)
real(kind=dp), intent(in) :: w(n)

Return Value real(kind=dp)


Called by

proc~~dmnorm~2~~CalledByGraph proc~dmnorm~2 M_odepack::dmnorm proc~dlsodar~2 M_odepack::dlsodar proc~dlsodar~2->proc~dmnorm~2 proc~dstoda~2 M_odepack::dstoda proc~dlsodar~2->proc~dstoda~2 proc~dlsoda~2 M_odepack::dlsoda proc~dlsoda~2->proc~dmnorm~2 proc~dlsoda~2->proc~dstoda~2 proc~dprja~2 M_odepack::dprja proc~dprja~2->proc~dmnorm~2 proc~dstoda~2->proc~dmnorm~2