source: trunk/WRF.COMMON/WRFV2/mars_lmd/libf/phymars/multipl.F @ 3428

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

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

File size: 376 bytes
Line 
1      SUBROUTINE multipl(n,x1,x2,y)
2      IMPLICIT NONE
3c=======================================================================
4c
5c   multiplication de deux vecteurs
6c
7c=======================================================================
8c
9      INTEGER n,i
10      REAL x1(n),x2(n),y(n)
11c
12      DO 10 i=1,n
13         y(i)=x1(i)*x2(i)
1410    CONTINUE
15c
16      RETURN
17      END
Note: See TracBrowser for help on using the repository browser.