Author: e p chandlere 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(:,:) ...
|