mention emitted warning when a rank deficient system is detected

This commit is contained in:
conrad
2021-07-21 16:16:14 +10:00
parent 4529818c7d
commit 50c6ce40f3
+8 -1
View File
@@ -13175,7 +13175,14 @@ the above settings can be combined using the <code>+</code> operator; for exampl
</li>
<br>
<li>
<b>Caveat:</b> using <i><code>solve_opts::fast</code></i> will speed up finding the solution, but for poorly conditioned systems the solution may have lower quality
If a rank deficient system is detected and the <i><code>solve_opts::no_approx</code></i> option is <b>not</b> enabled, a warning is emitted and an approximate solution is attempted;
<br>in Armadillo 10.4 and later versions, this warning can be disabled by setting <a href="#config_hpp">ARMA_WARN_LEVEL</a> to 1 before including the armadillo header:
<br><code>#define ARMA_WARN_LEVEL 1</code>
<br><code>#include&nbsp;&lt;armadillo&gt;</code>
</li>
<br>
<li>
<b>Caveat:</b> using <i><code>solve_opts::fast</code></i> will speed up finding the solution, but for poorly conditioned systems the solution may have lower quality
</li>
<br>
<li>