摘要: #include #include #include #include #include #include #include using namespace std; void getFiles( string, vector& );... 阅读全文
posted @ 2015-12-05 10:54 wcm_94 阅读(976) 评论(0) 推荐(0) 编辑
摘要: Cmake出现The CXX Compiler not found错误sudo apt-get update && sudo apt-get install build-essentialsudo apt-get install libglew-devsudo apt-get install fre... 阅读全文
posted @ 2015-10-27 13:10 wcm_94 阅读(405) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/dolphin0520/archive/2013/04/29/3046237.html 阅读全文
posted @ 2015-08-17 20:29 wcm_94 阅读(116) 评论(0) 推荐(0) 编辑
摘要: http://bbs.pcbeta.com/forum.php?mod=viewthread&tid=1541471&extra=page%3D1%26orderby%3Dheats 阅读全文
posted @ 2015-08-07 19:05 wcm_94 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Theqhulllibrary has a centralpoint with a few samples to startfrom when you want to use it in your code. Most interestingly, the developers invite you... 阅读全文
posted @ 2015-07-14 19:10 wcm_94 阅读(551) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;struct Count{ long count1; char space[64];//此处增加64字节的“无用”空间,目的就是使得count1和count2位于不同的Cache行,从而避免Cache行同步引起的“乒乓效应”... 阅读全文
posted @ 2015-05-20 10:17 wcm_94 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: https://sites.google.com/site/indy256/ 阅读全文
posted @ 2015-05-17 20:17 wcm_94 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Here are some notes about stress analysis in the field of Finite Element Analysis:Stress is simply a measurement of the internal forces in a body,as a... 阅读全文
posted @ 2015-05-07 19:59 wcm_94 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Definition of distance between data: (1) Hamming Distance:d(i,j)=sum(abs(x(i,k)-x(j,k))) | k from 1 to m (2) Euclid Distance:d(i,j)=sum((x(i,k)-x(j,k)... 阅读全文
posted @ 2015-05-07 19:54 wcm_94 阅读(193) 评论(0) 推荐(0) 编辑
摘要: class implementation{public:~implementation() { std::cout sp1(new implementation());std::cout sp2 = sp1;std::cout<<"The Sample now has "<<sp2.use_cou... 阅读全文
posted @ 2015-05-06 16:28 wcm_94 阅读(286) 评论(0) 推荐(0) 编辑