ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
out42_dummy.f
Go to the documentation of this file.
1  subroutine out42_c(ng,ygr,num,name)
2  include 'double.inc'
3 
4  real*4 ygr(*)
5  character *20 name
6 
7  print '(a20,(20(1p,e12.5)))',name,(ygr(i),i=1,ng)
8 
9  return
10  end
11 
12 
13 ! subroutine out42(n_pr,a_print,num,apr)
14 ! include 'double.inc'
15 ! real*4 a_print(*)
16 ! character *20 apr
17 ! !return
18 ! call out42_c(n_pr,a_print,num,apr)
19 !
20 !
21 ! return
22 ! end
23 
24 
25 
26 
27  subroutine out42(n,a,m,b)
28  real*4 a(*)
29  character*30 b
30 
31  return
32  end
33 
subroutine out42_c(ng, ygr, num, name)
Definition: out42_dummy.f:1
subroutine out42(n, a, m, b)
Definition: out42_dummy.f:27