We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16d6363 commit e9fcaeaCopy full SHA for e9fcaea
docs/source/usage.rst
@@ -37,7 +37,7 @@ For example, calculating a determinant:
37
{
38
xt::xarray<double> a = {{3, 2, 1}, {0, 4, 2}, {1, 3, 5}};
39
auto d = xt::linalg::det(a);
40
- std::cout << d << std::endl; // 42.000000
+ std::cout << d << std::endl; // 42.0
41
}
42
43
We can also try to compute the same determinant using the ``slogdet`` function, which
0 commit comments