Click or drag to resize
posIntVectorBaseType Complex Type

Vector with semicolon separated positive integer values

Namespace: Empty

Schema: Empty

Base Type
Content Type
ItemFacet ValueDescription
Restriction string
      Facet Pattern(\s+)?\d+(([eE][-+]?)?\d+)?(\s+)?(;(\s+)?\d+(([eE][-+]?)?\d+)?(\s+)?)*
Usages
Attributes
NameTypeRequiredDescription
Attribute aSimple Type string

Parameter a of the uncertainty distribution function

Attribute bSimple Type string

Parameter b of the uncertainty distribution function

Attribute cSimple Type string

Parameter c of the uncertainty distribution function

Attribute deltaSimple Type string

Parameter delta of the uncertainty distribution function

Attribute externalDataDirectorySimple Type string

Directory of the external data file

Attribute externalDataNodePathSimple Type string

Path of the node inside the external data file

Attribute externalFileNameSimple Type string

Name of the external data file

Attribute mapTypeSimple Type string

Mapping type of the data, fixed to vector

Attribute muSimple Type string

Parameter mu of the uncertainty distribution function

Attribute uncertaintyFunctionNameSimple Type uncertaintyFunctionType

Name of the uncertainty distribution function

Attribute vSimple Type string

Parameter v of the uncertainty distribution function

Attribute wSimple Type string

Parameter w of the uncertainty distribution function

Remarks

Any positive integer values separated by semicolons are permitted, e.g.:

Example 1: valid integer vector
<intVectorTest>0;1;2;3;4;5</intVectorTest>
Example 2: valid integer vector with only one entry
<intVectorTest>1</intVectorTest>
Example 3: invalid integer vector due comma separation
<intVectorTest>0,1,2,3,4,5</intVectorTest>
Example 4: invalid integer vector due to invalid integer
<intVectorTest>0.;1.;2.</intVectorTest>
Example 5: invalid integer vector due to negative value
<intVectorTest>-1;0;1</intVectorTest>