-
Euler
欧拉方法的MATLAB实现,这个程序是有运行结果的(A program )
- 2010-06-03 15:22:08下载
- 积分:1
-
least-square-a-least-norm-in-matlab
file includes least square and least mean in matlab
- 2011-10-19 17:07:28下载
- 积分:1
-
pca
PCA算法在matlab上的实现,包括特征向量提取,降维和数据重构(PCA algorithm)
- 2014-12-10 16:02:52下载
- 积分:1
-
pitch
pitch estimation matlab
- 2013-12-19 20:33:09下载
- 积分:1
-
panbie
判别方法,支持向量机与马氏距离判别法,用在可见及近红外光谱分析上百分之一百可以,自己写的,最好是matlab2014a,这个版本可以使用(Discriminant method, support vector machine (SVM) with markov distance criterion, with one hundred percent in the visible and near infrared spectrum analysis, write their own, had better be matlab2014a, this version can be used)
- 2015-10-27 20:07:00下载
- 积分:1
-
Kalman-Filter
《卡尔曼滤波原理及应用-MATLAB仿真》一书源代码例程( Kalman filter theory and applications- MATLAB simulation a book source code routines
)
- 2016-09-25 22:35:02下载
- 积分:1
-
matlab7.6(R2008a)
最新版本的数学工具的介绍及使用!不错的软件,已经在向vc靠近!欢迎大家使用!(The latest version of the mathematical tools to introduce and use! Good software, have been around to vc! Welcome to use!)
- 2008-12-31 14:10:54下载
- 积分:1
-
Ct
说明: 三维重建,利用matlab实现ct影像重建(Three-dimensional reconstruction)
- 2013-12-10 12:17:26下载
- 积分:1
-
image_transform
这是关于图像翻转,旋转,缩放等变换的MATLAB源程序,以函数的形式写出来。(This is about image rotation, zooming transform MATLAB source code, written in the form to function.)
- 2010-05-27 15:35:43下载
- 积分:1
-
EEE-212-lab-sheet
empirical formula with kaiser
clc
clear all
fs=1000
fc=250
df=50
r=0.001
f=fc/fs
dw=2*pi*(df/fs)
a=-20*log(r)
n=floor(((a-8)/(2.285*dw))+1)
if a>50
b=0.1102*(a-8.7)
elseif a>=21 && a<=50
b=0.5842*((a-21)^0.4)+0.07886*(a-21)
elseif a<21
b=0.0
end
w=kaiser(n,b)
for i=1:n
if i~=(n-1)/2
hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f)
elseif i==(n-1)/2
hd(i)=2*f
end
end
for j=1:n
h(j)=w(j)*hd(j)
end
subplot(3,1,1), plot(w)
subplot(3,1,2), plot(h)
subplot(3,1,3), plot(h,n)
- 2014-12-24 23:21:13下载
- 积分:1