You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
237 B

  1. Array<double,1,3> x(8,25,3),
  2. e(1./3.,0.5,2.);
  3. cout << "[" << x << "]^[" << e << "] = " << x.pow(e) << endl; // using ArrayBase::pow
  4. cout << "[" << x << "]^[" << e << "] = " << pow(x,e) << endl; // using StormEigen::pow