IXFrebunch xy dataset 2d

From LIBISIS
Revision as of 09:09, 4 April 2008 by Dean Whittaker (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function will rebunch an IXTdataset_2d object along the x and y dimension to give an IXTdataset_2d object result. It will rebin the data by adding together Xbunch successive bins or point data elements along the x dimension and Ybunch successive bins or point data elements along the y dimension


F90 syntax

use IXMdataset_2d

type(IXTdataset_2d):: dataset_2d,result_d2d
type(IXTstatus)::status
integer(i4b)::Xbunch,Ybunch

Xbunch=10
Ybunch=5

call IXFrebunch_xy_dataset_2d(result_d2d,dataset_2d,Xbunch,Ybunch,status)