-
NSA
负向选择算法的一个例子,它的基本思想就是通过采集正常数据集合生成检测器集,然后将待测数据与抗体集合中全部元素进行匹配计算,如与任一元素的匹配达到一定阈值,即判断该数据异常。(An example of negative selection algorithm. The basic idea is to collect the normal data set generated by the detector set, and then tested the data collection with the antibody to match all the elements of calculation, if any element of the match reaches a certain threshold, that determine the data exception.)
- 2010-12-11 22:20:25下载
- 积分:1
-
BCHEncode
关于bch码的编码matlab程序。可以作为函数直接引用。(Bch code encoding matlab program. As a function reference.)
- 2012-08-17 17:16:56下载
- 积分:1
-
fuzzycontrol
模糊控制一级线性倒立摆系统MAtlab、simulink仿真(A linear inverted pendulum fuzzy control system MAtlab, simulink simulation)
- 2013-12-24 21:55:12下载
- 积分:1
-
GM
说明: 该程序主要包括GM的模拟、预测、群模拟和群预测模型(The program mainly includes GM simulation, forecasting, simulation and group group prediction model)
- 2008-01-06 14:55:25下载
- 积分:1
-
LTI
信号与系统中的LTI线性非时变系统的程式例题,将作业题目写成MATLAB程式进行模拟与判断。(Signals and systems in the LTI LTI system programming examples, job title will be written in MATLAB programming for simulation and judgments.)
- 2010-11-12 12:47:37下载
- 积分:1
-
mean
matlab mex程序 可以直接运行c程序
图像去噪声(matlab
nex)
- 2010-01-12 11:42:04下载
- 积分:1
-
pca
人脸识别的matlab pca源码,希望对大家有用处(face recognition Matlab pca source, we hope to be useful)
- 2006-09-20 16:10:20下载
- 积分:1
-
gaot
A Genetic Algorithm for Function Optimization A Matlab Implementation
- 2012-06-03 21:36:27下载
- 积分:1
-
MATLAB-functiongdictionory
MATLAB函数库查询辞典,方便查询各种函数(MATLAB function queries dictionary, easy access various functions)
- 2013-08-27 16:09:48下载
- 积分: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