Enable saving intermidiate (Schur decomposition) but disable unstable specialization for matrix power-matrix product.

This commit is contained in:
Chen-Pang He
2012-09-21 23:24:28 +08:00
parent d5d99dd1f0
commit 87afd99433
5 changed files with 463 additions and 555 deletions

View File

@@ -11,6 +11,6 @@ int main()
sin(1), cos(1), 0,
0 , 0 , 1;
std::cout << "The matrix A is:\n" << A << "\n\n"
<< "The matrix power A^(pi/4) is:\n" << A.pow(pi/4) << std::endl;
"The matrix power A^(pi/4) is:\n" << A.pow(pi/4) << std::endl;
return 0;
}