1

C++程序打印出下面的数字是什么意思,H到底是什么意思?

-6.38442e-86H

整个系统太大,无法在此处添加,但是这里是打印出特定双精度的代码。

try{
    newLogLikelihoodEM= hmm->learningLogLikelihood(data, Arglist::getDiffLogLikelihood(), fileNumbers, rng);
}
catch (SingularCovarianceMatrixException &scme)
{
    std::cout << scme.what() << ": doing learning, so restarts for this start-point" << std::endl;
    noRestarts++;
    restart = true;
}

和异常类

class SingularCovarianceMatrixException: public std::exception
{
    double det;
public:
    SingularCovarianceMatrixException(double det):det(det){};

    virtual const char* what() const throw()
    {

        std::stringstream msg;
        msg<< "Singular covariance matrix: determinant="<<det;

        return msg.str().c_str();
    }
};

异常是由

if(*detCovarianceMatrix<1e-300)
{
    throw SingularCovarianceMatrixException(*detCovarianceMatrix);
}
4

2 回答 2

2

H不是数字的一部分。这不是浮点数的有效后缀。您的代码中的其他内容应该打印它。

于 2013-05-07T13:29:44.580 回答
1

H不是有效的浮点后缀,我找不到很好的参考来证明这一点,但我们可以使用以下代码证明它不是有效的转换:

#include <iostream>
#include <sstream>
#include <string>
#include <stdexcept>

class BadConversion : public std::runtime_error {
public:
  BadConversion(std::string const& s)
    : std::runtime_error(s)
    { }
};

inline double convertToDouble(std::string const& s,
                              bool failIfLeftoverChars = true)
{
  std::istringstream i(s);
  double x;
  char c;
  if (!(i >> x) || (failIfLeftoverChars && i.get(c)))
    throw BadConversion("convertToDouble(\"" + s + "\")");
  return x;
}

int main()
{
    double d1 = convertToDouble("-6.38442e-86") ;
    std::cout << d1 << std::endl ;
    d1 = convertToDouble("-6.38442e-86H");
    std::cout << d1 << std::endl ;
}

这是我从我之前关于如何检查 astring是否为integer.

于 2013-05-07T13:41:11.067 回答