-
music
基于MUSIC方法功率谱估计的matlab仿真,包含实验详细报告,源码,运行结果,及其分析。(MUSIC-based method of power spectrum estimation matlab simulation, including a detailed report on the experiment, source, run results, and analysis.)
- 2009-06-08 17:37:55下载
- 积分:1
-
zuobiaobanhuan
坐标变换,实现3/2和2/2变换。异步电动机矢量控制中使用的(Coordinate transformation, to achieve 3/2 and 2/2 transformation. Vector control induction motor used)
- 2011-05-09 11:07:17下载
- 积分:1
-
divide-Integer
matlab整数分解 自己写的 完全自写(matlab integer factorization write your own completely self-written)
- 2014-10-21 20:27:13下载
- 积分:1
-
app3
this is real fuzzy matlab code is hard3
- 2015-04-10 21:23:34下载
- 积分:1
-
fp toushe
用MATLABF仿真FP腔的传输特性,包括损耗,折射率以及半径对传输特性的影响(FP transmission based on MATLAB)
- 2021-04-08 14:29:01下载
- 积分:1
-
02-MATLAB
对MATLAB的学习这会很有用,大家学习学习(On MATLAB will be useful to learn that we learn from)
- 2010-05-14 00:39:59下载
- 积分:1
-
lab_1
MATLAB code to generate a sine wave when frequency and other characteristics are given.
- 2014-12-07 21:33:08下载
- 积分:1
-
vlfeat-0.9.18
vlfeat-0.9.18 matlab windows最新版本(vlfeat-0.9.18 windows)
- 2015-03-05 15:24:47下载
- 积分:1
-
MapleSimSimulinkConnectorGuide
系统地介绍了MATLAB中simulink仿真的用法,对初学MATLAB的人有很大帮助(Systematic introduction to the use of MATLAB, simulink simulation, MATLAB for beginners who are very helpful)
- 2010-10-30 11:27:58下载
- 积分: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