摘要: 多项式可以用向量来表示,Zernike多项式就是一组两两正交的多项式,也即两两正交的向量以下代码来自http://en.wikipedia.org/wiki/File:Zernike_polynomials2.png#include <stdio.h>#include <stdlib.h> static double fact( int n ) { // The factorial function! double f = 1; while(n>1) f *= n--; return f;} static inline ... 阅读全文
posted @ 2012-09-20 16:56 RyanHao 阅读(203) 评论(0) 推荐(0) 编辑