You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Johannes Kolbe edited this page Jul 30, 2014
·
2 revisions
In IlwisObjects the DataDefinition defines, what kind of data is contained in the object and which kind of data may be put into it.
For this definiton it relies on a Domain and the according Range. All possibilities can be seen in the following table.
Click on the name to get redirected to the according documentation (so far available).
Creating a new DataDefinition can now simply be done by passing the domain and optionally the range to it's constructor.
#Create rangenr=NumericRange(0.0, 10000.0)
#Create empty Numeric Domainnumdom=NumericDomain()
#Set range of new domainnumdom.setRange(nr)
datdef=DataDefinition(numdom, nr)