摘要:
Download Visual C++ Redistributable for Visual Studio 2012 Update 4 from Official Microsoft Download Center http://www.microsoft.com/zh-CN/download/de 阅读全文
摘要:
C++98 中定义了如下两种 main 函数的定义方式: int main( ) int main( int argc, char *argv[] ) (参考资料:ISO/IEC 14882(1998-9-01)Programming languages — C++ 3.6 Start and te 阅读全文
摘要:
使用Eigen 库:进行svd分解,形如 A = U * S * VT。 JacobiSVD<MatrixXd> svd(J, ComputeThinU | ComputeThinV); U = svd.matrixU(); V = svd.matrixV(); A = svd.singularVa 阅读全文
摘要:
Eigen http://eigen.tuxfamily.org/index.php?title=Main_Page 下载http://bitbucket.org/eigen/eigen/get/3.3.4.zip 2.91M Eigen 3.3.4 API documentation 配置:vs2 阅读全文