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
4 lines
237 B
Array<double,1,3> x(8,25,3),
|
|
e(1./3.,0.5,2.);
|
|
cout << "[" << x << "]^[" << e << "] = " << x.pow(e) << endl; // using ArrayBase::pow
|
|
cout << "[" << x << "]^[" << e << "] = " << pow(x,e) << endl; // using StormEigen::pow
|