-
filter
filter design pakcage matlab
- 2010-10-11 21:18:25下载
- 积分:1
-
thecodeofebookoptimumarrayprocessing
国外经典信号处理书籍最优阵列处理全部源程序(THE code for the BOOK of 《OPTIMUM ARRAY PROCESSING》)
- 2010-11-17 08:42:17下载
- 积分:1
-
burg-power-spectrum-estimation
信号处理中的基于burg算法的功率谱估计的matlab仿真程序(matlab program of burg power spectrum estimation algorithm )
- 2014-09-28 14:37:20下载
- 积分:1
-
汽车工况构建
说明: 通过实际采集到的数据,数显通过数据预处理,进行不良数据的清洗,然后通过PCA降维,k均值聚类提取运动学片段,建立运动学片段库,通过随机策略提取运动学片段构成汽车行驶工况。(Through the actual collected data, the digital display cleans the bad data through data pretreatment, and then extracts the kinematics fragments through PCA dimensionality reduction, K-means clustering, establishes the kinematics fragments library, and extracts the kinematics fragments through random strategy to form the driving conditions of the vehicle.)
- 2019-09-23 20:13:13下载
- 积分:1
-
ISODATA
ISODATA算法,对原本算法进行了简化,计算速度较快()
- 2007-10-23 10:26:23下载
- 积分:1
-
Seconds_simulation_program_c_source
秒针模拟程序c源码Seconds simulation program c source(Seconds simulation program c source Seconds simulation program c source)
- 2010-08-05 03:58:09下载
- 积分:1
-
spline_eval
evaluate a spline interpolant (works with the output from linear_spline.m, cubic_nak.m and cubic_clamped.m)
- 2010-02-08 16:13:09下载
- 积分:1
-
matlab-QLEARNING
模拟机器人路径规划,采用强化学习中的Q学习算法来实现,最后会返回机器人选择路径的坐标位置(code for path searching)
- 2016-08-30 15:36:54下载
- 积分:1
-
huffman
MATLAB实现huffman编码,可以自由改变输入(Convert a color image into a grayscale)
- 2013-04-01 20:22:03下载
- 积分: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