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 d61b9ff commit 16d6363Copy full SHA for 16d6363
docs/source/usage.rst
@@ -49,7 +49,7 @@ returning a ``std::tuple``, which can be unpacked using ``std::get<N>(tuple)``.
49
50
xt::xarray<double> a = {{3, 2, 1}, {0, 4, 2}, {1, 3, 5}};
51
auto d = xt::linalg::slogdet(a);
52
- std::cout << std::get<0>(d) << ", " << std::get<1>(d) << std::endl; // 1.0000000, 3.7376696
+ std::cout << std::get<0>(d) << ", " << std::get<1>(d) << std::endl; // +1, 3.7376696
53
54
Returning tuples is used throughout the xlinalg package.
55
0 commit comments