aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/doc/examples/MatrixPower.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unsupported/doc/examples/MatrixPower.cpp')
-rw-r--r--unsupported/doc/examples/MatrixPower.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/doc/examples/MatrixPower.cpp b/unsupported/doc/examples/MatrixPower.cpp
index 6ade0b8af..222452476 100644
--- a/unsupported/doc/examples/MatrixPower.cpp
+++ b/unsupported/doc/examples/MatrixPower.cpp
@@ -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;
}