⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getp.cc

📁 The Little Green BATS is the first and so far only Dutch team in the 3D simulation league. We are a
💻 CC
字号:
#include "normaldistribution3d.ih"double NormalDistribution3D::getP(Vector3D const &x) const{  // P(x) = 1 / ((2 * pi)^(N/2) * |S|^(1/2)) * e ^ (- 1/2 * (x - mu)T * S^-1 * (x - mu))  Vector3D temp;  Vector3D xminmu = x - d_mu;  Matrix9D::mulTVect(temp, xminmu, d_invSigma);    return d_factor * exp(-0.5 * temp.dotProduct(xminmu));}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -