view examples/fortsub.f @ 15521:e92dde30f754

test: Modify strsplit test suite to match new mapper function behavior (bug #37535). * strsplit.m: Test for char(ones(1,0)) rather than numeric ones(1,0) when returning an empty field.
author Rik <rik@octave.org>
date Sun, 14 Oct 2012 20:54:53 -0700
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