source: trunk/LMDZ.PLUTO.old/libf/bibio/mxv.F @ 3561

Last change on this file since 3561 was 3175, checked in by emillour, 12 months ago

Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM

File size: 401 bytes
Line 
1      SUBROUTINE MXV(A,NRA,B,NCA,C)
2      IMPLICIT NONE
3
4      INTEGER NRA,NCA
5      REAL A(NRA,NCA), B(NCA), C(NRA)
6
7      INTEGER I,J
8
9c     initialize product
10      DO 100 I = 1, NRA
11         C(I) = 0.
12100   CONTINUE
13c     multiply matrix A and vector B
14      DO 220 J = 1, NCA
15         DO 210 I = 1, NRA
16            C(I) = C(I) + A(I,J)*B(J)
17210     CONTINUE
18220   CONTINUE
19      RETURN
20      END
Note: See TracBrowser for help on using the repository browser.