// -*- c++ -*- // // $COPYRIGHT$ // //=========================================================================== #include #include /* example output: 22.3607 */ int main() { using namespace mtl; using namespace std; //begin typedef complex cplx_d; dense1D< cplx_d > x(10, cplx_d(2.0, 1.0)); double s = one_norm(x); cout << s << endl; //end return 0; }