Changeset 886 for library/tests/stresssuite
- Timestamp:
- 03/29/10 23:01:49 (15 years ago)
- Location:
- library/tests/stresssuite
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/stresssuite/merger_2d_stress.cpp
r721 r886 67 67 it << Name ( "S1" ) << f1->evallog_mat ( Grid ); 68 68 it << Name ( "S2" ) << f2->evallog_mat ( Grid ); 69 cout << ( ( enorm<ldmat>* ) ( MP->_Coms ( 0 ).get() ) )->_R().to_mat() << endl;69 // cout << ( ( enorm<ldmat>* ) ( MP->_Coms ( 0 ).get() ) )->_R().to_mat() << endl; 70 70 } -
library/tests/stresssuite/mixtures_stress.cpp
r766 r886 15 15 mat Var ( 2, 2 ), M ( 1, 2 ); 16 16 for ( i = 0; i < ep._rv().length() - 1; i++ ) { // -1 => last one is the weight 17 ( ( egiw* ) ep ( i ) )->mean_mat ( M, Var );17 ( ( egiw* ) ep.factor ( i ) )->mean_mat ( M, Var ); 18 18 cout << "Mean: " << M << endl << "Variance: " << endl << Var << endl; 19 19 } 20 cout << "Weights: " << ep ( i )->mean() << endl;20 cout << "Weights: " << ep.factor ( i )->mean() << endl; 21 21 } 22 22