我正在尝试定义一个数组数组。我已经定义:
integer,dimension(2,2):: &
x=reshape(source= (/0,1,1,0/), shape=(/2,2/)), &
y=reshape(source= (/1,0,0,1/), shape=(/2,2/)), &
z=reshape(source= (/1,1,1,1/), shape=(/2,2/))
我想定义一个数组,比如说,s(3),其中,(x/y/z) 是组件,即
s(1)=x
s(2)=y
and s(3)=z
我怎样才能做到这一点?