Revision 489, 0.7 kB
(checked in by smidl, 15 years ago)
|
Mpdf redesing is complet - all tests pass (except mlnorm<chmat> which is irrelevant)
|
Rev | Line | |
---|
[459] | 1 | data = ( |
---|
| 2 | { |
---|
| 3 | class = "mpdf_harness"; |
---|
| 4 | mpdf = { |
---|
| 5 | class = "mlnorm<ldmat>"; |
---|
| 6 | A = ( "matrix", 2, 2, [ 1.0, 0.0, 0.0, 1.0 ] ); |
---|
| 7 | const = [ 0, 0 ]; |
---|
| 8 | R = ( "matrix", 2, 2, [ 1.2, 0.3, 0.3, 5.0 ] ); |
---|
| 9 | }; |
---|
| 10 | cond = [ 1.5, 1.7 ]; |
---|
| 11 | mean = [ 1.5, 1.7 ]; |
---|
[489] | 12 | R = ( "matrix", 2, 2, [ 1.2, 0.3, 0.3, 5.0 ] ); |
---|
| 13 | variance = [ 1.2, 5.0 ]; |
---|
[462] | 14 | tolerance = 0.6; |
---|
[489] | 15 | }, |
---|
| 16 | { |
---|
| 17 | class = "mpdf_harness"; |
---|
| 18 | mpdf = { |
---|
| 19 | class = "mlnorm<chmat>"; |
---|
| 20 | A = ( "matrix", 2, 2, [ 1.0, 0.0, 0.0, 1.0 ] ); |
---|
| 21 | const = [ 0, 0 ]; |
---|
| 22 | R = ( "matrix", 2, 2, [ 1.2, 0.3, 0.3, 5.0 ] ); |
---|
| 23 | }; |
---|
| 24 | cond = [ 1.5, 1.7 ]; |
---|
| 25 | mean = [ 1.5, 1.7 ]; |
---|
| 26 | R = ( "matrix", 2, 2, [ 1.2, 0.3, 0.3, 5.0 ] ); |
---|
| 27 | variance = [ 1.2, 5.0 ]; |
---|
| 28 | tolerance = 0.6; |
---|
| 29 | }); |
---|