blob: cf0f20e329fb9a670fd34542c7cab7f34ed52849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.w3.org/1998/Math/MathML"
targetNamespace="http://www.w3.org/1998/Math/MathML"
elementFormDefault="qualified"
>
<xs:annotation>
<xs:documentation>
This is an XML Schema module for the statistical operators of content MathML.
Author: Stéphane Dalmas, INRIA.
</xs:documentation>
</xs:annotation>
<!-- "mean" -->
<xs:attributeGroup name="mean.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="mean.type">
<xs:attributeGroup ref="mean.attlist"/>
</xs:complexType>
<xs:element name="mean" type="mean.type"/>
<!-- "sdev" -->
<xs:attributeGroup name="sdev.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="sdev.type">
<xs:attributeGroup ref="sdev.attlist"/>
</xs:complexType>
<xs:element name="sdev" type="sdev.type"/>
<!-- "variance" -->
<xs:attributeGroup name="variance.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="variance.type">
<xs:attributeGroup ref="variance.attlist"/>
</xs:complexType>
<xs:element name="variance" type="variance.type"/>
<!-- "median" -->
<xs:attributeGroup name="median.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="median.type">
<xs:attributeGroup ref="median.attlist"/>
</xs:complexType>
<xs:element name="median" type="median.type"/>
<!-- "mode" -->
<xs:attributeGroup name="mode.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="mode.type">
<xs:attributeGroup ref="mode.attlist"/>
</xs:complexType>
<xs:element name="mode" type="mode.type"/>
<!-- "moment" -->
<xs:attributeGroup name="moment.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:complexType name="moment.type">
<xs:attributeGroup ref="moment.attlist"/>
</xs:complexType>
<xs:element name="moment" type="moment.type"/>
<!-- "momentabout" -->
<xs:attributeGroup name="momentabout.attlist">
<xs:attributeGroup ref="Definition.attrib"/>
<xs:attributeGroup ref="Common.attrib"/>
</xs:attributeGroup>
<xs:group name="momentabout.content">
<xs:sequence>
<xs:group ref="Content-expr.class"/>
</xs:sequence>
</xs:group>
<xs:complexType name="momentabout.type">
<xs:group ref="momentabout.content" minOccurs="1" maxOccurs="unbounded"/>
<xs:attributeGroup ref="momentabout.attlist"/>
</xs:complexType>
<xs:element name="momentabout" type="momentabout.type"/>
<!-- And the group of everything -->
<xs:group name="Content-statistics.class">
<xs:choice>
<xs:element ref="mean"/>
<xs:element ref="sdev"/>
<xs:element ref="variance"/>
<xs:element ref="median"/>
<xs:element ref="mode"/>
<xs:element ref="moment"/>
<xs:element ref="momentabout"/>
</xs:choice>
</xs:group>
</xs:schema>
<!--
Copyright û 2002 World Wide Web Consortium, (Massachusetts Institute
of Technology, Institut National de Recherche en Informatique et en
Automatique, Keio University). All Rights Reserved. See
http://www.w3.org/Consortium/Legal/.
-->
|