File: t_Matrix_std.expout

package info (click to toggle)
openturns 1.26-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 67,708 kB
  • sloc: cpp: 261,605; python: 67,030; ansic: 4,378; javascript: 406; sh: 185; xml: 164; makefile: 101
file content (398 lines) | stat: -rw-r--r-- 9,396 bytes parent folder | download | duplicates (3)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
test number zero : default constructor and string converter
matrix0 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=0 columns=0 values=[]
test number one : constructor with size, operator() and string converter
matrix1 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,2,3,4]
test number two : copy constructor and string converter
matrix2 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,2,3,4]
test number three : get dimensions methods
matrix1's nbRows = 2
matrix1's nbColumns = 2
test number four : constructor with collection and array method
elementsValues = [1,2,3,4,5,6]
matrix0bis = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,2,3,4]
test number five : assignment method
matrix3 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,2,3,4]
test number six : transposition method
matrix1 transposed = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,3,2,4]
test number seven : addition method
sum1 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[2,5,5,8]
sum2 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[2,5,5,8]
sum1 equals sum2 = true
test number eight : subtraction method
diff = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[0,-1,1,0]
test number nine : matrix multiplication method
prod = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[10,14,14,20]
test number ten : multiplication with a point method
pt = class=Point name=Unnamed dimension=2 values=[1,2]
ptResult = class=Point name=Unnamed dimension=2 values=[7,10]
test number eleven : multiplication and division by a scalar methods
scalprod1 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[3,6,9,12]
scalprod2 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[3,6,9,12]
scalprod3 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[3,6,9,12]
scalprod1 equals scalprod2 = true
scalprod1 equals scalprod3 = true
scalprod2 equals scalprod3 = true
scaldiv1 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[0.333333,0.666667,1,1.33333]
scaldiv2 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[0.333333,0.666667,1,1.33333]
scaldiv1 equals scaldiv2 = true
test number twelve : isEmpty method
matrix1 is empty = false
matrix5 is empty = true
matrix6 is empty = true
matrix0 is empty = true
test number fourteen : multiplication with a point method
pt_test = class=Point name=Unnamed dimension=2 values=[1,2]
A = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[0.5,-0.866025,0.866025,0.5]
B = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[0.5,0.866025,-0.866025,0.5]
id = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=2 values=[1,0,0,1]
ptResult2 = class=Point name=Unnamed dimension=2 values=[1,2]
test number fifteen : multiplication with a sample method
matrix32 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=3 columns=2 values=[1,2,3,4,5,6]
matrix23 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=2 columns=3 values=[1,2,3,4,5,6]
matrix34 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=3 columns=4 values=[1,2,3,4,5,6,7,8,9,10,11,12]
matrix43 = class=Matrix implementation=class=MatrixImplementation name=Unnamed rows=4 columns=3 values=[1,2,3,4,5,6,7,8,9,10,11,12]
S = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=2 dimension=4 data=[[1,3,-1,-3],[-2,-5,3,1]]
matrix32*S = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=3 dimension=4 data=[[-7,-17,11,1],[-8,-19,13,-1],[-9,-21,15,-3]]
matrix32*S = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=3 dimension=4 data=[[-7,-17,11,1],[-8,-19,13,-1],[-9,-21,15,-3]]
matrix23^T*S = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=3 dimension=4 data=[[-3,-7,5,-1],[-5,-11,9,-5],[-7,-15,13,-9]]
S*matrix43 = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=2 dimension=3 data=[[-8,-8,-8],[1,-11,-23]]
S*matrix34^T = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=2 dimension=3 data=[[-24,-24,-24],[9,6,3]]
S2 = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=4 dimension=2 data=[[1,-2],[3,-5],[-1,3],[-3,1]]
matrix32*S2^T = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=3 dimension=4 data=[[-7,-17,11,1],[-8,-19,13,-1],[-9,-21,15,-3]]
matrix23^T*S2^T = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=3 dimension=4 data=[[-3,-7,5,-1],[-5,-11,9,-5],[-7,-15,13,-9]]
S2^T*matrix43 = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=2 dimension=3 data=[[-8,-8,-8],[1,-11,-23]]
S2^T*matrix34^T = class=Sample name=Unnamed implementation=class=SampleImplementation name=Unnamed size=2 dimension=3 data=[[-24,-24,-24],[9,6,3]]
A = [[ 1 3 ]
 [ 2 4 ]]
----------1x1
[[ 1 ]]
----------1x2
[[ 1 3 ]]
----------1x3
[[ 1 3 0 ]]
----------1x4
[[ 1 3 0 0 ]]
----------1x5
1x5
[[ 1 3 0 0 0 ]]
----------2x1
[[ 1 ]
 [ 2 ]]
----------2x2
[[ 1 3 ]
 [ 2 4 ]]
----------2x3
[[ 1 3 0 ]
 [ 2 4 0 ]]
----------2x4
[[ 1 3 0 0 ]
 [ 2 4 0 0 ]]
----------2x5
2x5
[[ 1 3 0 0 0 ]
 [ 2 4 0 0 0 ]]
----------3x1
[[ 1 ]
 [ 2 ]
 [ 0 ]]
----------3x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]]
----------3x3
[[ 1 3 0 ]
 [ 2 4 0 ]
 [ 0 0 0 ]]
----------3x4
[[ 1 3 0 0 ]
 [ 2 4 0 0 ]
 [ 0 0 0 0 ]]
----------3x5
3x5
[[ 1 3 0 0 0 ]
 [ 2 4 0 0 0 ]
 [ 0 0 0 0 0 ]]
----------4x1
[[ 1 ]
 [ 2 ]
 [ 0 ]
 [ 0 ]]
----------4x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]
 [ 0 0 ]]
----------4x3
[[ 1 3 0 ]
 [ 2 4 0 ]
 [ 0 0 0 ]
 [ 0 0 0 ]]
----------4x4
[[ 1 3 0 0 ]
 [ 2 4 0 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]]
----------4x5
4x5
[[ 1 3 0 0 0 ]
 [ 2 4 0 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]]
----------5x1
5x1
[[ 1 ]
 [ 2 ]
 [ 0 ]
 [ 0 ]
 [ 0 ]]
----------5x2
5x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]
 [ 0 0 ]
 [ 0 0 ]]
----------5x3
5x3
[[ 1 3 0 ]
 [ 2 4 0 ]
 [ 0 0 0 ]
 [ 0 0 0 ]
 [ 0 0 0 ]]
----------5x4
5x4
[[ 1 3 0 0 ]
 [ 2 4 0 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]]
----------5x5
5x5
[[ 1 3 0 0 0 ]
 [ 2 4 0 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]]
A = [[ 1 4 ]
 [ 2 5 ]
 [ 3 6 ]]
----------1x1
[[ 1 ]]
----------1x2
[[ 1 4 ]]
----------1x3
[[ 1 4 0 ]]
----------1x4
[[ 1 4 0 0 ]]
----------1x5
1x5
[[ 1 4 0 0 0 ]]
----------2x1
[[ 1 ]
 [ 2 ]]
----------2x2
[[ 1 4 ]
 [ 2 5 ]]
----------2x3
[[ 1 4 0 ]
 [ 2 5 0 ]]
----------2x4
[[ 1 4 0 0 ]
 [ 2 5 0 0 ]]
----------2x5
2x5
[[ 1 4 0 0 0 ]
 [ 2 5 0 0 0 ]]
----------3x1
[[ 1 ]
 [ 2 ]
 [ 3 ]]
----------3x2
[[ 1 4 ]
 [ 2 5 ]
 [ 3 6 ]]
----------3x3
[[ 1 4 0 ]
 [ 2 5 0 ]
 [ 3 6 0 ]]
----------3x4
[[ 1 4 0 0 ]
 [ 2 5 0 0 ]
 [ 3 6 0 0 ]]
----------3x5
3x5
[[ 1 4 0 0 0 ]
 [ 2 5 0 0 0 ]
 [ 3 6 0 0 0 ]]
----------4x1
[[ 1 ]
 [ 2 ]
 [ 3 ]
 [ 0 ]]
----------4x2
[[ 1 4 ]
 [ 2 5 ]
 [ 3 6 ]
 [ 0 0 ]]
----------4x3
[[ 1 4 0 ]
 [ 2 5 0 ]
 [ 3 6 0 ]
 [ 0 0 0 ]]
----------4x4
[[ 1 4 0 0 ]
 [ 2 5 0 0 ]
 [ 3 6 0 0 ]
 [ 0 0 0 0 ]]
----------4x5
4x5
[[ 1 4 0 0 0 ]
 [ 2 5 0 0 0 ]
 [ 3 6 0 0 0 ]
 [ 0 0 0 0 0 ]]
----------5x1
5x1
[[ 1 ]
 [ 2 ]
 [ 3 ]
 [ 0 ]
 [ 0 ]]
----------5x2
5x2
[[ 1 4 ]
 [ 2 5 ]
 [ 3 6 ]
 [ 0 0 ]
 [ 0 0 ]]
----------5x3
5x3
[[ 1 4 0 ]
 [ 2 5 0 ]
 [ 3 6 0 ]
 [ 0 0 0 ]
 [ 0 0 0 ]]
----------5x4
5x4
[[ 1 4 0 0 ]
 [ 2 5 0 0 ]
 [ 3 6 0 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]]
----------5x5
5x5
[[ 1 4 0 0 0 ]
 [ 2 5 0 0 0 ]
 [ 3 6 0 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]]
A = [[ 1 3 5 ]
 [ 2 4 6 ]]
----------1x1
[[ 1 ]]
----------1x2
[[ 1 3 ]]
----------1x3
[[ 1 3 5 ]]
----------1x4
[[ 1 3 5 0 ]]
----------1x5
1x5
[[ 1 3 5 0 0 ]]
----------2x1
[[ 1 ]
 [ 2 ]]
----------2x2
[[ 1 3 ]
 [ 2 4 ]]
----------2x3
[[ 1 3 5 ]
 [ 2 4 6 ]]
----------2x4
[[ 1 3 5 0 ]
 [ 2 4 6 0 ]]
----------2x5
2x5
[[ 1 3 5 0 0 ]
 [ 2 4 6 0 0 ]]
----------3x1
[[ 1 ]
 [ 2 ]
 [ 0 ]]
----------3x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]]
----------3x3
[[ 1 3 5 ]
 [ 2 4 6 ]
 [ 0 0 0 ]]
----------3x4
[[ 1 3 5 0 ]
 [ 2 4 6 0 ]
 [ 0 0 0 0 ]]
----------3x5
3x5
[[ 1 3 5 0 0 ]
 [ 2 4 6 0 0 ]
 [ 0 0 0 0 0 ]]
----------4x1
[[ 1 ]
 [ 2 ]
 [ 0 ]
 [ 0 ]]
----------4x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]
 [ 0 0 ]]
----------4x3
[[ 1 3 5 ]
 [ 2 4 6 ]
 [ 0 0 0 ]
 [ 0 0 0 ]]
----------4x4
[[ 1 3 5 0 ]
 [ 2 4 6 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]]
----------4x5
4x5
[[ 1 3 5 0 0 ]
 [ 2 4 6 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]]
----------5x1
5x1
[[ 1 ]
 [ 2 ]
 [ 0 ]
 [ 0 ]
 [ 0 ]]
----------5x2
5x2
[[ 1 3 ]
 [ 2 4 ]
 [ 0 0 ]
 [ 0 0 ]
 [ 0 0 ]]
----------5x3
5x3
[[ 1 3 5 ]
 [ 2 4 6 ]
 [ 0 0 0 ]
 [ 0 0 0 ]
 [ 0 0 0 ]]
----------5x4
5x4
[[ 1 3 5 0 ]
 [ 2 4 6 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]
 [ 0 0 0 0 ]]
----------5x5
5x5
[[ 1 3 5 0 0 ]
 [ 2 4 6 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]
 [ 0 0 0 0 0 ]]