-
ball
图像分割算法的Matlab源程序,找到不少都上传上来了(Image Segmentation Matlab source code, to find many were uploaded onto the)
- 2010-05-16 15:36:10下载
- 积分:1
-
Matlab_Tutorial
matlab基础教程,从最简单的matlab程序教起(matlab basic tutorial, taught from the most simple matlab program)
- 2012-05-31 12:55:08下载
- 积分:1
-
moead
一种多目标优化算法的matlab程序,能够实现大量目标的同时优化,对多目标优化算法的学习很有帮助(a multi-object optimization matlab program,can optimize large object at meantime it will contribute to those who want to study muti-object optimization algorithm)
- 2013-09-15 14:32:50下载
- 积分:1
-
RBF
RBF neural network with an example
- 2011-12-23 22:30:01下载
- 积分:1
-
sxbwsvpwm1
一种基于锁相环控制的三相并网逆变器控制系统仿真。(A three-phase grid inverter control based on hysteresis control system simulation.)
- 2016-05-18 22:28:02下载
- 积分:1
-
MATLAB
matlab使用手册,非常实用,超级好用. (matlab manual, very practical, super-easy to use.)
- 2007-11-05 00:14:15下载
- 积分:1
-
mfiles
说明: matlab的一些例子,对入门的新手有帮助(Matlab some examples of the entry of newcomers help)
- 2006-03-13 19:36:57下载
- 积分:1
-
VistaRenderer3
This article demonstrates how to use the WindowsVistaRenderer and how it was created.
Background
- 2007-11-22 15:08:42下载
- 积分:1
-
fx-demo
主要用于地震资料处理波数频率域反褶积和图像显示(Mainly used for seismic data processing and wave-number frequency domain deconvolution and image display)
- 2012-06-09 16:10:59下载
- 积分: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