[Numpy-discussion] Fortran was dead ... [was Re: rewriting NumPy code in C or C++ or similar]

Sturla Molden sturla at molden.no
Wed Mar 16 08:32:06 EDT 2011


Den 16.03.2011 13:25, skrev Sturla Molden:
>
> Fortran 90 pointers create a view.
>
> real*8, target :: array(n,m)
> real*8, pointer :: view
>
> view =>  array(::2, ::2)

Pardon, the second line should be

real*8, pointer :: view(:,:)


Sturla



More information about the NumPy-Discussion mailing list