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
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