犰狳如何摆脱错误信息

armadillo how to get rid of error message

运行 尽管已成功捕获异常,但以下代码仍会生成一条错误消息,该消息会转到 stdout(而非 stderr):

Mat<double> matrix_quantiles(const vector<double> & quantiles,
                         const Mat<double> & m) {
  Mat<double> sorted_matrix;
  try {
    sorted_matrix = arma::sort(arma::cor(m));
  } catch(std::logic_error & e) {
  /*
   Sometimes a col is constant, causing the correlation to be
   infinite. If that happens, add normal random jitter to the
   values and retry.
  */
  const Mat<double> jitter = Mat<double>(
    m.n_rows, m.n_cols, arma::fill::randn);
  return matrix_quantiles(quantiles, 1.e-3 * jitter + m);
} 
etc.

错误信息是:

error: sort(): given object has non-finite elements

代码运行良好,抖动策略对我来说已经足够好了,但是如果我将输出写入标准输出,我必须过滤掉错误消息。

谢谢。

要禁用错误消息的打印,请在包含 Armadillo header 之前定义一个名为 ARMA_DONT_PRINT_ERRORS 的宏。例如:

#define ARMA_DONT_PRINT_ERRORS
#include <armadillo>