-
NeuralNetwork_RBF
基于RBF的matlab程序源码,很有用哦,呵呵(RBF-based source of the matlab program, very useful Oh, Oh)
- 2009-06-02 15:03:29下载
- 积分:1
-
Data-Makers
These scripts demonstrate techniques used to generate test data and write those data to external data files.
- 2011-06-14 04:36:26下载
- 积分:1
-
code-of-PSO
基于matlab的粒子群优化算法,并且包含几种典型的测试函数(A Matlab optimization algorithm based on particle swarm, and contains several typical test functions.)
- 2015-09-07 16:41:48下载
- 积分:1
-
changguipidx
利用S函数的PID解耦控制器实现单元机组解耦控制(The use of S function decoupling PID controller to achieve decoupling control unit)
- 2009-07-12 21:16:44下载
- 积分:1
-
GSitesDWT
this is a matlab code fro h.264 coding
- 2014-09-09 22:43:17下载
- 积分:1
-
fivephase
mathematical modelling of five phase induction motor and simulink/matlab
- 2011-11-29 23:01:49下载
- 积分:1
-
[PID]-Advanced-Control-Engineering-2001-Burns-Mat
E Book Advanced Control Engineering 2001 Burns Matlab
- 2012-02-05 07:29:18下载
- 积分:1
-
HSMM
说明: HSMM的matlab实现,可用于状态识别和寿命预测(HSMM with matlab ,which can be used for remaining useful life pridection.)
- 2021-04-06 16:39:02下载
- 积分:1
-
PV_Single_Phase
单相光伏并网发电系统的simulink仿真。包含光伏电池模块、MPPT模块、BOOST模块、逆变模块等。(singal phase PV system simulink)
- 2021-04-10 12:48: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