Last change
on this file since 3436 was
3175,
checked in by emillour, 11 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:
376 bytes
|
Line | |
---|
1 | SUBROUTINE multipl(n,x1,x2,y) |
---|
2 | IMPLICIT NONE |
---|
3 | c======================================================================= |
---|
4 | c |
---|
5 | c multiplication de deux vecteurs |
---|
6 | c |
---|
7 | c======================================================================= |
---|
8 | c |
---|
9 | INTEGER n,i |
---|
10 | REAL x1(n),x2(n),y(n) |
---|
11 | c |
---|
12 | DO 10 i=1,n |
---|
13 | y(i)=x1(i)*x2(i) |
---|
14 | 10 CONTINUE |
---|
15 | c |
---|
16 | RETURN |
---|
17 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.