home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.fortran
- Path: sparky!uunet!msdrl!ball
- From: ball@msdrl.com (Richard Ball)
- Subject: Re: dbx headache
- Message-ID: <1993Jan22.135940.9828@msdrl.com>
- Organization: Merck Research Laboratories
- References: <93021.234529MATOVICM@QUCDN.QueensU.CA>
- Date: Fri, 22 Jan 93 13:59:40 GMT
- Lines: 13
-
- MATOVICM@QUCDN.QueensU.CA () writes:
- : I'm fed up with dbx (SGI, IRIX 3.3.2, IRIX 4.0.1) when debugging fortran
- : programs. Examining arrays is pain in a neck unless you deal with the
- : size a(3,3) or similar. Is there any way to say e.g.
- : print a from 155 to 175 (and possibly to specify the increment).
- : Or, is there any other UNIX (public domain) debugger that can handle
- : arrays frinedly?
-
- your dbx should let you do
- &a(155)/20f
- to print the 20 elements of a in floating point format starting at element
- 155. It's not the most friendly way but it is better than listing the whole
- thing.
-