摘要:
FFT算法的完整DSP实现傅里叶变换或者FFT的理论参考:[1]http://www.dspguide.com/ch12/2.htm The Scientist and Engineer's Guide toDigital Signal Processing, By Steven W. Smith... 阅读全文
摘要:
// 2013年11月4日21:47:21# include # include int main(){ int n; double p, r; scanf("%d%lf", &n, &r); p = pow((1+r), n); printf("%lf\n", p); return 0;}/*-... 阅读全文