解释C ++中非规范化双精度的打印

时间:2013-05-07 13:24:57

标签: c++ double-precision

当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);
}

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分: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 ;
}

我从之前的answers之一获取了关于如何检查string是否为integer的代码。