~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to xsd2cppsax/mathml2/content/linear-algebra.xsd

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
 
 
3
<xs:schema 
 
4
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
 
5
  xmlns="http://www.w3.org/1998/Math/MathML"
 
6
  targetNamespace="http://www.w3.org/1998/Math/MathML"
 
7
  elementFormDefault="qualified"
 
8
 >
 
9
 
 
10
<xs:annotation>
 
11
  <xs:documentation>
 
12
  This is an XML Schema module for the linear algebra part of content MathML.
 
13
  Author: St&#233;phane Dalmas, INRIA.
 
14
  </xs:documentation>
 
15
</xs:annotation>
 
16
 
 
17
<!-- "vector" -->
 
18
 
 
19
<xs:attributeGroup name="vector.attlist">
 
20
  <xs:attributeGroup ref="Common.attrib"/>
 
21
</xs:attributeGroup>
 
22
 
 
23
<xs:group name="vector.content">
 
24
  <xs:sequence>
 
25
    <xs:group ref="Content-expr.class"/>
 
26
  </xs:sequence>
 
27
</xs:group>
 
28
 
 
29
<xs:complexType name="vector.type">
 
30
  <xs:group ref="vector.content" minOccurs="1" maxOccurs="unbounded"/>
 
31
  <xs:attributeGroup ref="vector.attlist"/>
 
32
</xs:complexType>
 
33
 
 
34
<xs:element name="vector" type="vector.type"/>
 
35
 
 
36
<!-- "matrix" -->
 
37
 
 
38
<xs:attributeGroup name="matrix.attlist">
 
39
  <xs:attributeGroup ref="Common.attrib"/>
 
40
</xs:attributeGroup>
 
41
 
 
42
<xs:group name="matrix.content">
 
43
  <xs:sequence>
 
44
    <xs:element ref="matrixrow"/>
 
45
  </xs:sequence>
 
46
</xs:group>
 
47
 
 
48
<xs:complexType name="matrix.type">
 
49
  <xs:group ref="matrix.content"  minOccurs="1" maxOccurs="unbounded"/>
 
50
  <xs:attributeGroup ref="matrix.attlist"/>
 
51
</xs:complexType>
 
52
 
 
53
<xs:element name="matrix" type="matrix.type"/>
 
54
 
 
55
<!-- "matrixrow" -->
 
56
 
 
57
<xs:attributeGroup name="matrixrow.attlist">
 
58
  <xs:attributeGroup ref="Common.attrib"/>
 
59
</xs:attributeGroup>
 
60
 
 
61
<xs:group name="matrixrow.content">
 
62
  <xs:sequence>
 
63
    <xs:group ref="Content-expr.class"/>
 
64
  </xs:sequence>
 
65
</xs:group>
 
66
 
 
67
<xs:complexType name="matrixrow.type">
 
68
  <xs:group ref="matrixrow.content"  minOccurs="1" maxOccurs="unbounded"/>
 
69
  <xs:attributeGroup ref="matrixrow.attlist"/>
 
70
</xs:complexType>
 
71
 
 
72
<xs:element name="matrixrow" type="matrixrow.type"/>
 
73
 
 
74
<!-- "determinant" -->
 
75
 
 
76
<xs:attributeGroup name="determinant.attlist">
 
77
  <xs:attributeGroup ref="Definition.attrib"/>
 
78
  <xs:attributeGroup ref="Common.attrib"/>
 
79
</xs:attributeGroup>
 
80
 
 
81
<xs:complexType name="determinant.type">
 
82
  <xs:attributeGroup ref="determinant.attlist"/>
 
83
</xs:complexType>
 
84
 
 
85
<xs:element name="determinant" type="determinant.type"/>
 
86
 
 
87
<!-- "transpose" -->
 
88
 
 
89
<xs:attributeGroup name="transpose.attlist">
 
90
  <xs:attributeGroup ref="Definition.attrib"/>
 
91
  <xs:attributeGroup ref="Common.attrib"/>
 
92
</xs:attributeGroup>
 
93
 
 
94
<xs:complexType name="transpose.type">
 
95
  <xs:attributeGroup ref="transpose.attlist"/>
 
96
</xs:complexType>
 
97
 
 
98
<xs:element name="transpose" type="transpose.type"/>
 
99
 
 
100
<!-- "selector" -->
 
101
 
 
102
<xs:attributeGroup name="selector.attlist">
 
103
  <xs:attributeGroup ref="Definition.attrib"/>
 
104
  <xs:attributeGroup ref="Common.attrib"/>
 
105
</xs:attributeGroup>
 
106
 
 
107
<xs:complexType name="selector.type">
 
108
  <xs:attributeGroup ref="selector.attlist"/>
 
109
</xs:complexType>
 
110
 
 
111
<xs:element name="selector" type="selector.type"/>
 
112
 
 
113
<!-- "vectorproduct" -->
 
114
 
 
115
<xs:attributeGroup name="vectorproduct.attlist">
 
116
  <xs:attributeGroup ref="Definition.attrib"/>
 
117
  <xs:attributeGroup ref="Common.attrib"/>
 
118
</xs:attributeGroup>
 
119
 
 
120
<xs:complexType name="vectorproduct.type">
 
121
  <xs:attributeGroup ref="vectorproduct.attlist"/>
 
122
</xs:complexType>
 
123
 
 
124
<xs:element name="vectorproduct" type="vectorproduct.type"/>
 
125
 
 
126
<!-- "scalarproduct" -->
 
127
 
 
128
<xs:attributeGroup name="scalarproduct.attlist">
 
129
  <xs:attributeGroup ref="Definition.attrib"/>
 
130
  <xs:attributeGroup ref="Common.attrib"/>
 
131
</xs:attributeGroup>
 
132
 
 
133
<xs:complexType name="scalarproduct.type">
 
134
  <xs:attributeGroup ref="scalarproduct.attlist"/>
 
135
</xs:complexType>
 
136
 
 
137
<xs:element name="scalarproduct" type="scalarproduct.type"/>
 
138
 
 
139
<!-- "outerproduct" -->
 
140
 
 
141
<xs:attributeGroup name="outerproduct.attlist">
 
142
  <xs:attributeGroup ref="Definition.attrib"/>
 
143
  <xs:attributeGroup ref="Common.attrib"/>
 
144
</xs:attributeGroup>
 
145
 
 
146
<xs:complexType name="outerproduct.type">
 
147
  <xs:attributeGroup ref="outerproduct.attlist"/>
 
148
</xs:complexType>
 
149
 
 
150
<xs:element name="outerproduct" type="outerproduct.type"/>
 
151
 
 
152
<!-- And the group of everything -->
 
153
 
 
154
<xs:group name="Content-linear-algebra.class">
 
155
  <xs:choice>
 
156
     <xs:element ref="vector"/>
 
157
     <xs:element ref="matrix"/>
 
158
     <xs:element ref="determinant"/>
 
159
     <xs:element ref="transpose"/>
 
160
     <xs:element ref="selector"/>
 
161
     <xs:element ref="vectorproduct"/>
 
162
     <xs:element ref="scalarproduct"/>
 
163
     <xs:element ref="outerproduct"/>
 
164
  </xs:choice>
 
165
</xs:group>
 
166
</xs:schema>
 
167
 
 
168
<!--
 
169
  Copyright &#251; 2002 World Wide Web Consortium, (Massachusetts Institute
 
170
  of Technology, Institut National de Recherche en Informatique et en
 
171
  Automatique, Keio University). All Rights Reserved. See
 
172
  http://www.w3.org/Consortium/Legal/.
 
173
  -->