Re: Ten Commandments (On Topic!)
- From: Ron Shepard <ron-shepard@xxxxxxxxxxxxxxxxxx>
- Date: Mon, 21 Nov 2005 10:37:54 -0600
In article <1132567651.181930.30740@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>,
"David Flower" <DavJFlower@xxxxxxx> wrote:
> INTEGER MATRIX(MCOL,MROW)
I always hate debugging code like this. Fortran has its own
conventions about rows and columns, and although you can swim
upstream and use the opposite convention, it just makes it harder
for others to work with your code. In fact, after you come back to
your own code in a few days, weeks, months, etc., it is harder to
work on your own code with this backwards convention.
INTEGER MATRIX(MROW,MCOL) ! the way god intended :-)
$.02 -Ron Shepard
.
- References:
- Ten Commandments (On Topic!)
- From: David Flower
- Ten Commandments (On Topic!)
- Prev by Date: Re: LAPACK & Intel 9.0: unexpected behaviour (bug?)
- Next by Date: Re: LAPACK & Intel 9.0: unexpected behaviour (bug?)
- Previous by thread: Re: Ten Commandments (On Topic!)
- Next by thread: Re: Ten Commandments (On Topic!)
- Index(es):
Relevant Pages
|