#include using namespace itpp; //These lines are needed for use of cout and endl using std::cout; using std::endl; void Test ( const egiw &E ) { } int main() { cout << "Testing eGiw(1,1)"< double s=0.1; // TEST 1x1 EGIW mat V ( 3,3 ); V ( 0,0 ) = pow ( mu,2 ) +pow ( b ,2 ) +s; V ( 1,0 ) = mu; V ( 2,0 ) = b; V ( 0,1 ) = V ( 1,0 ); V ( 1,1 ) = 1.0; V ( 2,1 ) = 0.0; V ( 0,2 ) = V ( 2,0 ); V ( 1,2 ) = V ( 2,1 ); V ( 2,2 ) = 1.0; double nu=20; RV thr ( "{thr }", "3" ); egiw E ( thr,nu*V,nu ); cout << "egiw mean value:" << E.mean() <