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.
5 lines
232 B
5 lines
232 B
2 years ago
|
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 Eigen::pow
|