summaryrefslogtreecommitdiffstats
path: root/testsuite/tests/lib-bigarray-2/bigarrf.f
blob: ff52de1d9fa586614dcee39c2f185ef1468731fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
	subroutine filltab()

	integer dimx, dimy
	parameter (dimx = 8, dimy = 6)
	real ftab(dimx, dimy)
	common /ftab/ ftab
	integer x, y

	do 100 x = 1, dimx
	   do 110 y = 1, dimy
	      ftab(x, y) = x * 100 + y
 110	   continue
 100	continue
	end

	subroutine printtab(tab, dimx, dimy)

	integer dimx, dimy
	real tab(dimx, dimy)
	integer x, y

	do 200 x = 1, dimx
	   print 300, x, (tab(x, y), y = 1, dimy)
 300	   format(/1X, I3, 2X, 10F6.1/)
 200	continue
	end