Mercurial > hg > octave-nkf
view examples/fortsub.f @ 11951:9cfbc1a1bf0b release-3-0-x
this branch is no longer maintained and is closed for further development
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 22 Jan 2011 00:59:43 -0500 |
parents | 503001863427 |
children | 4295d634797d |
line wrap: on
line source
c Copyright (C) 2007 John W. Eaton c c This file is part of Octave. c c Octave is free software; you can redistribute it and/or c modify it under the terms of the GNU General Public c License as published by the Free Software Foundation; c either version 3 of the License, or (at your option) any c later version. c c Octave is distributed in the hope that it will be useful, c but WITHOUT ANY WARRANTY; without even the implied c warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR c PURPOSE. See the GNU General Public License for more c details. c c You should have received a copy of the GNU General Public c License along with Octave; see the file COPYING. If not, c see <http://www.gnu.org/licenses/>. 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