I am not sure which version of Fortran is this piece of code, also I am not very good at it but here is the piece of code that I try to understand...
DO 55 J=1,N
IF(KODE(J)) 55,55,40 ! Can not figure out what this line does
40 DO 50 I=1,N
CH=G(I,J)
G(I,J)=-H(I,J)
H(I,J)=-CH
50 CONTINUE
55 CONTINUE
In the loop given above, could you help me to understand what the 2nd line does, specifically the labels 55,55,40
This is a code from a boundary element book that I am trying to understand...