IXFmake dataset 1d

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

This is a special creation subroutine, which when given the appropriate characteristics of an IXTdataset_1d object (length x dimension, histogram and distribution data flags) will assign memory for its elements but not populate any arrays. The IXTdataset_1d object may then be filled with data in another function/subroutine.


F90 Syntax

use IXMdataset_1d

type(IXTdataset_1d)::dataset_1d
integer(i4b)::nx ! length of x array of dataset_1d object to be created
logical::hist ! x_histogram flag of dataset_1d object to be created
logical::dist ! x_distribtion of dataset_1d object to be created
type(IXTstatus)::status
:
:
call IXFmake_dataset_1d(dataset_1d,nx,dist,hist,status)