资源列表
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)
Matlab Mechanical Vibrations
- Mechanical Vibrations的例程
平均互信息的程序
- 计算平均互信息的程序,很好用。希望给大家能提供帮助
NEDI图像插值
- New Edge-Directed Interpolation
用于仿真PLL环路增益噪声的例程
- 程序模拟了pll中PFD,VCO,CP,LOOP-FILTER等各部分的噪声性能,并进行整个链路的仿真优化,仅供参考。
cole-colemode.rar
- 地球物理中cole-cole反演,图形绘制。
matlab输出无空边的图形
- matlab用于输出eps,tiff格式的图片,自动去掉空白,字体大小等,适合于出版用的图片输出
matlab电弧模拟
- 用matlab对电弧进行模拟的程序,包含多个文件分别用于温度压力等的微分求解计算
matlab open timit 转换timit文件
- 转换timit文件
ChebyshevTools
- The m-files in this directory can be used to solve ordinary and partial differential equations with Chebyshev discretizations
SVMNR非线性回归matlab通用程序
- SVMNR非线性回归matlab通用程序