2009年11月13日

摘要: 转自http://hi.baidu.com/kaien_space/blog/item/dcb84b8b96347bd4fd1f1011.html关于CLAPACK的使用网上的资料并不多。主要就是官方网站上的安装说明,以 及LAPACK官方论坛上的一些资料。然而,国外一般科研使用的平台都是UNIX或LINUX, 所以对于windows上使用CLAPACK的相关介绍就很少。幸运的是,官方提供了CLA... 阅读全文
posted @ 2009-11-13 18:40 一步一步 阅读(4466) 评论(1) 推荐(0) 编辑
 
摘要: 转自http://accu.org/index.php/journals/442It is not uncommon to see different pieces of code that havebasically the same structure, but contain variation in the details.Ideally we would be able to reuse... 阅读全文
posted @ 2009-11-13 14:33 一步一步 阅读(484) 评论(0) 推荐(0) 编辑

2009年11月12日

摘要: 1.需要注意区间为[-PI, PI],如果不是则需要线性变换过来。2.区间中结点等距分布。 3.需要是周期函数,即在-PI和PI出的函数值相等,否则计算出来的结果好像不对。 //第一个结点为-PI,最后一个节点为PI前的一个节点。 阅读全文
posted @ 2009-11-12 21:03 一步一步 阅读(312) 评论(0) 推荐(0) 编辑
 
摘要: http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Checked_delete试了一下,果然是如此。在只见声明,未见定义的情况下用delete确实不会调用析构函数。Intent Increase safety of delete expression. Also Known As Motivation and Sample Code The C++ ... 阅读全文
posted @ 2009-11-12 12:07 一步一步 阅读(523) 评论(0) 推荐(0) 编辑