Re: Random Numbers
- From: kia <kia@xxxxxxxxxxx>
- Date: Fri, 30 Jun 2006 05:56:41 GMT
Michael Metcalf wrote:
integer, parameter :: lbound = 1, ubound = 1500
Character(LEN=50),Dimension(lbound:ubound)::quotes
... and, to avoid storing treasures in heaven, you're also better off
avoiding the names of Fortran keywords as variable names. This is not
illegal, but will cause grief in the future.
Better still would be that you pointed out Fortran hidden treasures,
considering OP's newness, and advised a cleaner readable rendition. i.e.
parameter (n = 1500)
character*50 quotes(n)
as a contrast to that "new & mangled" verbosity.
.
- Follow-Ups:
- Re: Random Numbers
- From: Walt Brainerd
- Re: Random Numbers
- From: CTallant
- Re: Random Numbers
- References:
- Random Numbers
- From: CTallant
- Re: Random Numbers
- From: *** Hendrickson
- Re: Random Numbers
- From: Michael Metcalf
- Random Numbers
- Prev by Date: Re: Efficient way to pass different shaped arrays?
- Next by Date: Re: linking g95-built library from VC++
- Previous by thread: Re: Random Numbers
- Next by thread: Re: Random Numbers
- Index(es):