资源列表
四种方法求解15阶线性方程组
- 采用Cramer算法、Gauss列主元、Gauss全主元、Doolittle算法等四种方法求解15阶线性方程组的C++代码
snort-2.9.0.3
- snort-2.9.0.3 源代码
NEDI图像插值
- New Edge-Directed Interpolation
石头剪子布
- 在ofdm系统中扰码仿真
混沌时间序列分析与预测工具箱
- 混沌时间序列分析与预测工具箱 Version1.0 chaotic time series analysis and prediction matlab toolbox - version 1.0
平均互信息的程序
- 计算平均互信息的程序,很好用。希望给大家能提供帮助
Matlab Mechanical Vibrations
- Mechanical Vibrations的例程
ID3算法
- 这是我们老师给的ID3实验代码(txt格式),很典型的
ICP算法
- ICP fit points in data to the points in model. Fit with respect to minimize the sum of square errors with the closest model points and data points. Ordinary usage: [R, T] = icp(model,data) INPUT: model - matrix with model points, data - matrix with d
矩阵的压缩存储(对称矩阵,三角矩阵,稀疏矩阵)
- 矩阵的压缩存储 问题描述:矩阵是许多科学与工程计算问题中出现的数学对象。在此,我们感兴趣的不是矩阵本身,我们所关心的是研究表示矩阵的方法,以使对矩阵的各种运算能有效地完成。一个矩阵一般由m行和n列元素组成,一般的m*n阶矩阵,可表示成一个m*n的二维数组,例如matrix[m][n],需要的存储空间是m*n 实现要求: 若矩阵中的元素是对称的,即矩阵中第i行第j列与第j行第i列元素的值相等,即matrix[i][j]=matrix[j][i],我们把这种矩阵称为对称矩阵。对于n*n阶对称矩阵,我
newton method
- function p=newton(f_str,df_str,p0) tol=0.00001; f = inline(f_str); df= inline(df_str); while 1 p=p0-f(p0)/df(p0); if abs(p-p0)<tol, break; end p0=p; disp(p0); end disp(p)
HHT
- hilbert-huang变换的程序!