
技术
csdnbao
懒惰,虚弱,目光如钜
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数字信号处理 Digital Signal Processing 有限冲击响应FIR 无限冲击响应 IIR
【Matlab】The primary advantage of IIR filters over FIR filters is that they typically meet a given set of specifications with a much lower filter order than a corresponding FIR filter.IIR滤波器相对于FIR滤波器原创 2009-08-05 22:55:00 · 1461 阅读 · 0 评论 -
Causal filter
In signal processing, a causal filter is a linear and time-invariant causal system. The word causal indicates that the filter output depends only on past and present inputs. A filter whose原创 2009-09-05 10:21:00 · 1603 阅读 · 0 评论 -
linux 下安装软件的那点事儿
Understanding software Installation (configure, make, make install)This tutorial is aimed at those who have just started using Linux. Generally when users fro原创 2010-02-25 12:58:00 · 628 阅读 · 0 评论 -
Microsoft C++ AMP Accelerated Massive Parallelism
Microsoft's C++ AMP Unveiled http://drdobbs.com/windows/231600761 Over the past few years, some developers have started to take advantage转载 2011-09-30 09:29:37 · 1154 阅读 · 0 评论 -
C# 显示注释 Documentation summary
XML Documentation in C# Anson Horton, C# Compiler Program Manager C# supports the creation of XML Comments, allowing developers to quickly原创 2011-10-08 21:04:18 · 2437 阅读 · 0 评论 -
基于最小二乘法的C++二次抛物线拟合
// //a0x^2+a1x+a2 = y //r:相关系数^2 bool Parabola(double* x, double* y, int n, double* a, double* r) { const int CURVE_INDEX = 3; double B[CURVE_INDEX]; double **A =new double*[CURVE_INDEX];原创 2011-11-23 12:46:42 · 5570 阅读 · 3 评论 -
基于C++的n阶线性方程组Ax=b求解
const double EPSILONG = 0.001; // //列主元方法求解n阶线性方程组Ax=b bool Solve(double** A, double* b, double* x, int n) { double** M = new double*[n]; for (int i=0; i<n; i++) { M[i] = new double[n+原创 2011-11-23 11:51:23 · 3700 阅读 · 2 评论