source: trunk/WRF.COMMON/WRFV2/mars_lmd/libf/bibio/mxv.F @ 3026

Last change on this file since 3026 was 11, checked in by aslmd, 14 years ago

spiga@svn-planeto:ajoute le modele meso-echelle martien

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.