PDA

View Full Version : Fortran.Net, Fortran 77 and arrays ;)


Kerad
04-22-2004, 04:48 PM
Hi,

Well i'm back with another cute problem lol
I hope it has an easy solution too :p

So, here it is. I have the following code in Fortran 77:
subroutine T12D3D(l,c,n)
real l(n,8)
well, you see, a 2-dimensional array is declared here.

but, when i compile this with Fortran.Net compiler, it is converted to
float[] ... and not float [,] so I can't use the exact parameters ..

Where is the problem? How to solve it?

Thanks a lot,

Kerad

Kerad
04-23-2004, 09:45 AM
Hi, well, hum... there is no smiley for the ashamed little guy :p

In fact reading the whole forum I found the answer to this question
http://www.laheyforum.com/showthread.php?t=10186

Sorry for the inconvenience
And thanks a lot :D

Kerad