view examples/fortsub.f @ 14100:8a2dc08886ea stable

Fix Info referencing for i, I, j, J (Bug #35157) * data.cc (I): Fix Info referencing for i, I, j, J (Bug #35157) by explictly using @findex macro.
author Rik <octave@nomad.inbox5.com>
date Fri, 23 Dec 2011 12:04:13 -0800
parents 4295d634797d
children
line wrap: on
line source

      subroutine fortsub (n, a, s)
      implicit none
      character*(*) s
      real*8 a(*)
      integer*4 i, n, ioerr
      do i = 1, n
        if (a(i) .eq. 0d0) then
          call xstopx ('fortsub: divide by zero')
        else
          a(i) = 1d0 / a(i)
        endif
      enddo
      write (unit = s, fmt = '(a,i3,a,a)', iostat = ioerr)
     $       'There are ', n,
     $       ' values in the input vector', char(0)
      if (ioerr .ne. 0) then
        call xstopx ('fortsub: error writing string')
      endif
      return
      end