Mercurial > hg > octave-lyh
view libcruft/misc/d1mach.f @ 2484:ccaffe93c32f
[project @ 1996-11-07 23:24:46 by jwe]
author | jwe |
---|---|
date | Thu, 07 Nov 1996 23:25:37 +0000 |
parents | 679068a18eee |
children | 337a09dd1c06 |
line wrap: on
line source
double precision function d1mach (i) integer i logical init double precision dmach(5) data init /.false./ save init, dmach if (.not. init) then call machar (dmach(1), dmach(2), dmach(3), dmach(4), dmach(5)) init = .true. endif if (i .lt. 1 .or. i .gt. 5) goto 999 d1mach = dmach(i) return 999 write(*,1999) i 1999 format(' d1mach - i out of bounds', i10) call xstopx (' ') d1mach = 0 end