Hey,
just another problem occured now. In the code the following is defined:
INTEGER :: dpi(2)
REAL(WP), DIMENSION(:,:) :: ap,ap1
the following operation is done:
dpi=maxloc(abs(ap1-ap))
dp=ap1(dpi(1),dpi(2))-ap(dpi(1),dpi(2))
Do I understand it right, that dpi(1) is the row where...