IXFexpand arrayd1d dataset 2d

From LIBISIS
Jump to navigation Jump to search

his routine will expand an IXTdataset_2d object into an array of IXTdataset_1d objects. If it is supplied an integer list array of valid indices, only those indices in the y array of the input IXTdataset_2d will be extracted. The index information will be lost since there is no appropriate element in an IXTdataset_1d object.


F90 syntax

use IXMdataset_2d

type(IXTdataset_2d)::dataset_2d
type(IXTdataset_2d),allocatable:: arrayout_d1d(:)
integer(i4b)::list(:)
type(IXTstatus)::status

call IXFexpand_arrayd1d_dataset_2d(dataset_2d,status,arrayout_d1d)

call IXFexpand_arrayd1d_dataset_2d(dataset_2d,status,arrayout_d1d,list)