-
matlab-network
使用matlab进行神经网络建模,再用网络模型解决生活中的实际问题(use matlab to build nero network and solve daily problems)
- 2015-02-07 08:17:34下载
- 积分:1
-
matlab-several-example
几个简单的FVM流动传热的例子,二维,采用现有体积法求解。(several example)
- 2011-12-20 22:45:58下载
- 积分:1
-
puguji
信号的谱估计的相关问题例子,可以用于初步了解相关原理(Signal spectrum estimation examples of related issues, can be used in a preliminary understanding of the relevant principles of)
- 2008-12-25 15:29:47下载
- 积分:1
-
lbp_code
说明: 提取图像LBP特征,用于图像识别,能有效提高识别速度。(LBP feature extraction of image)
- 2011-03-23 17:18:10下载
- 积分:1
-
buck_simulation
例子关于buck的仿真,里面有simulink文件和一个绘制buck输出功率与占空比关系的matlab源文件。(About buck simulation example, which has drawn buck simulink file and a relationship between output power and duty cycle of the matlab source files.)
- 2013-10-29 10:51:58下载
- 积分:1
-
aa
说明: 用matlab仿真,用PID控制实现调速(matlab,PID controller)
- 2013-12-04 11:35:41下载
- 积分:1
-
OFDR传感系统的建模仿真
OFDR传感系统的建模仿真(Modeling and Simulation of OFDR sensing system)
- 2021-04-15 15:18:54下载
- 积分:1
-
gaotonglvboqi
基于Matlab的高通滤波器的设计源码,可以通过此代码,模拟高通滤波器的设计。并附有仿真后的图像。(Matlab-based high-pass filter design source code, this code can simulate the high-pass filter design. Together with simulation, the image.)
- 2010-06-30 09:55:59下载
- 积分:1
-
MyAutoCorr
本程序是用于信号相关分析的实验程序, 主要功能是计算和比较几种信号的相关函数。(Auto Correlation matlab program)
- 2012-06-18 10:57:27下载
- 积分:1
-
MatchFilterLFM
高分辨率雷达 距离向压缩算法滤波器设计 三种方法 全面设计(clc
clear all
close all
2013年9月28日
---------------参数----------
Tr=42e-6
fs=9.5e6
K=0.7e11
Nfft=2048
-------------匹配滤波 时域生成--------------
t=(-Tr/2+1/fs:1/fs:Tr/2-1/fs)
w = kaiser(length(t),2.5)
w=w
w = ones(1,length(t))
ht1=w.*exp(-1i*pi*K*t.^2)
ht2=w.*exp(1i*pi*K*t.^2)
hf1=fft(ht1,Nfft)
hf2=fft(ht2,Nfft)
figure
subplot(211)
plot(abs(hf1))
title( 匹配滤波器1 幅频响应 )
subplot(212)
plot(phase(hf1))
title( 匹配滤波器1 相位 )
figure
subplot(211)
plot(abs(hf2))
title( 匹配滤波器2 幅频响应 )
)
- 2013-10-12 22:32:06下载
- 积分:1