Skip to content
Snippets Groups Projects
Commit 3eb6e97a authored by Justin Jagieniak's avatar Justin Jagieniak
Browse files

Branch with covarianceMatrix

parent 49ad1e5e
Branches
No related tags found
No related merge requests found
...@@ -621,8 +621,8 @@ ...@@ -621,8 +621,8 @@
multivariate measurement uncertainty multivariate measurement uncertainty
</xs:documentation> </xs:documentation>
</xs:annotation> </xs:annotation>
<xs:element name="ellipsoidalRegionXMLList" type="si:ellipsoidalRegionType"/> <xs:element name="ellipsoidalRegionXMLList" type="si:ellipsoidalRegionXMLListType"/>
<xs:element name="rectangularRegionXMLList" type="si:rectangularRegionType"/> <xs:element name="rectangularRegionXMLList" type="si:rectangularRegionXMLListType"/>
</xs:choice> </xs:choice>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
...@@ -793,6 +793,33 @@ ...@@ -793,6 +793,33 @@
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
<xs:complexType name="covarianceMatrixXMLListType">
<xs:sequence>
<xs:element name="column" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation xml:lang="en">
Definition of a column in the covariance matrix.
</xs:documentation>
<xs:documentation xml:lang="en">
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:annotation>
<xs:documentation xml:lang="en">
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="covarianceValueXMLList" type="si:decimalXMLListType"/>
<xs:element name="covarianceUnitXMLList" type="si:unitXMLListType"/>
</xs:sequence>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ellipsoidalRegionType"> <xs:complexType name="ellipsoidalRegionType">
<xs:sequence> <xs:sequence>
...@@ -805,6 +832,19 @@ ...@@ -805,6 +832,19 @@
<xs:element name="distribution" type="xs:string" minOccurs="0"/> <xs:element name="distribution" type="xs:string" minOccurs="0"/>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
<xs:complexType name="ellipsoidalRegionXMLListType">
<xs:sequence>
<!-- covariance matrix data -->
<xs:element name="covarianceMatrixXMLList" type="si:covarianceMatrixXMLListType"/>
<!-- coverage properties of region -->
<xs:element name="coverageFactorXMLList" type="si:kValueXMLListType"/>
<xs:element name="coverageProbabilityXMLList" type="si:probabilityValueXMLListType"/>
<!-- optional information about distribution -->
<xs:element name="distributionXMLList" type="si:stringXMLListType" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="rectangularRegionType"> <xs:complexType name="rectangularRegionType">
...@@ -818,6 +858,18 @@ ...@@ -818,6 +858,18 @@
<xs:element name="distribution" type="xs:string" minOccurs="0"/> <xs:element name="distribution" type="xs:string" minOccurs="0"/>
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
<xs:complexType name="rectangularRegionXMLListType">
<xs:sequence>
<!-- covariance matrix data -->
<xs:element name="covarianceMatrixXMLList" type="si:covarianceMatrixXMLListType"/>
<!-- coverage properties of region -->
<xs:element name="coverageFactorXMLList" type="si:kValueXMLListType"/>
<xs:element name="coverageProbabilityXMLList" type="si:probabilityValueXMLListType"/>
<!-- optional information about distribution -->
<xs:element name="distributionXMLList" type="si:stringXMLListType" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="listUnivariateUncType"> <xs:complexType name="listUnivariateUncType">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment