Re: unknown problem
  Home FAQ Contact Sign in
comp.lang.fortran only
 
Advanced search
POPULAR GROUPS

more...

comp.lang.fortran Profile…
 Up
Re: unknown problem         


Author: e p chandler
Date: May 26, 2007 14:28

On May 26, 3:32 pm, "James Giles" worldnet.att.net> wrote:
> e p chandler wrote:
>
> ...
>
>> real,dimension(:,:),allocatable::A1(:,:)
>> real, dimension(:,:),allocatable::A3(:,:)
>> real,dimension(:),allocatable::A4(:)
>
> Well, it doesn't mean anything different, but why the redundant
> shape specifications of the variables? The above means the
> same as either:
>
> real,dimension(:,:),allocatable::A1
> real, dimension(:,:),allocatable::A3
> real,dimension(:),allocatable::A4
>
> or:
>
> real,allocatable::A1(:,:) ...
Show full article (1.34Kb)
no comments