-
Desktop
matlab关于蚁群聚类的源代码,较好的实现了聚类效果(matlab source code for ant colony clustering, clustering achieve better results)
- 2011-08-18 15:16:04下载
- 积分:1
-
BL-Lac-object
类星体光变分析,在matlab环境下W-M函数模拟光变,内含大量BL Lac原始观测数据!(light curve of BL Lac object)
- 2013-01-15 09:23:32下载
- 积分:1
-
RANSMITTER_2PPM_TH
超宽带发射机,采样跳时脉冲位置调制方式进行。对于UWB学习非常重要(Ultra-wideband transmitter pulse position modulation, sampling jump. Is very important for UWB learning)
- 2013-05-16 18:12:25下载
- 积分:1
-
Matlab prog upload
Dear Sir,
I have uploaded some neural network and DSP kind of programms.
Thank You,
-bibyut
- 2010-12-30 02:19:50下载
- 积分:1
-
algeorithm-program-for-invented-pendulum
续上一个程序的线性控制律的滑模变结构控制源代码,在二级摆上进行实验,调试运行正确。(continued on a linear process control law SMVSC control of the source code, in the top two experiments Debugging operating correctly.)
- 2007-05-23 14:00:54下载
- 积分:1
-
Smith
smith圆图工具MATLAB版本,可以方便的进行阻抗匹配。(smith circle diagram tool MATLAB versions, you can easily carry the impedance matching.)
- 2013-03-03 07:05:22下载
- 积分:1
-
cvx
基于MATLAB的凸优化仿真,主要应用原始对偶内点法解决(cvx based MATLAB)
- 2020-11-23 19:39:34下载
- 积分:1
-
timerof
使用改进后的全变分算法对地震振幅切片进行处理,可以提高地震剖面的分辨率,增加信噪比。(Using the improved algorithm, total variation for processing seismic amplitude slices, can improve the resolution of seismic profiles, increased signal to noise ratio.)
- 2010-10-22 16:52:38下载
- 积分:1
-
Lee fliter
Lee 滤波例子和代码,程序的说明和功能非常详细。(Lee filter examples and code)
- 2017-06-24 11:27:00下载
- 积分: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