<xsd:complexType name="CovarianceElementType" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:annotation>
<xsd:documentation>An element of a covariance matrix.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="rowIndex" type="positiveInteger">
<xsd:annotation>
<xsd:documentation>Row number of this covariance element value. </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="columnIndex" type="positiveInteger">
<xsd:annotation>
<xsd:documentation>Column number of this covariance element value. </xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="covariance" type="double">
<xsd:annotation>
<xsd:documentation>Value of covariance element. </xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|