如何在 Fortran 的数组中组合一堆大的可分配向量?我想避免使用复制和重塑,reshape
因为数组很大。我想要达到的效果就像Fortran的一样equivalence
,来说明一下:
program test_equiv
integer x(10), y(10), z(10), xyz(10,3)
equivalence (x, xyz(1,1))
equivalence (y, xyz(1,2))
equivalence (z, xyz(1,3))
x = 1
y = 2
z = 3
! and we can use just normal array syntax
print *, xyz(3,:)
end program
但是,这不适用于可分配数组。如果是关于访问矩阵向量,则可以通过指针轻松实现。但是如何将向量组合到一个二维数组中呢?到目前为止,我只遇到了有问题的指针数组:
program test_arofpntrs
implicit none
integer :: i
integer, allocatable, target :: xs(:), ys(:), zs(:)
type t_p_xs
integer, pointer :: p_xs(:)
end type t_p_xs
type(t_p_xs), allocatable :: coords(:)
allocate(coords(3), xs(10), ys(10), zs(10))
xs = 1
ys = 2
zs = 3
coords(1) % p_xs => xs
coords(2) % p_xs => ys
coords(3) % p_xs => zs
print *, coords(1) % p_xs(:)
! this fails:
!print *, coords(:) % p_xs(1)
end program
这很难看,无法访问 xs(i)、ys(i)、zs(i)。没有副本可以做我想做的事吗?