-
1234
这是一个关于多目标数据融合的很好的温章,希望对大家有所帮助。原理清晰,见解独特,希望对大家有所帮助(This is a multi-target data fusion on the temperature of a good chapter, we want to help. Principles of clarity, insight unique, want to help everyone)
- 2010-02-26 16:37:52下载
- 积分:1
-
CrestFactorreduction
this code gives minimum peak to average power ratio. the technique used here is adding peak reduction carriers
- 2010-05-20 15:03:19下载
- 积分:1
-
adaptive-filter
包括了LMS算法,RLS算法实现的自适应滤波器,以及Wiener最优滤波器(Including the LMS algorithm, RLS algorithm adaptive filter, and Wiener optimal filter)
- 2011-07-14 15:28:23下载
- 积分:1
-
video
Education dpr active important
- 2014-12-03 10:43:09下载
- 积分:1
-
MATLAB-Highpass-filter
基于matlab的 高通滤波器类别, 设计方法,应用等。(matlab highpass filter)
- 2011-12-20 11:19:33下载
- 积分:1
-
rbpfdbn
% PURPOSE : Demonstrate the differences between the following
% filters on a simple DBN.
%
% 3) Particle Filter (PF)
% 4) PF with Rao Blackwellisation (RBPF)( PURPOSE: Demonstrate the differences between the following filters on a simple DBN. 3) Particle Filter (PF) 4) PF with Rao Blackwellisation (RBPF))
- 2020-07-03 22:20:01下载
- 积分:1
-
c
说明: 针对员工数目较多的公司,用于员工信息查询和工资计算(A relatively large number of companies for the employees, for employee information inquiries and payment of wages)
- 2009-12-02 19:38:06下载
- 积分:1
-
ARPR_simulink
simulink下对APRX结构的仿真。实现在频域对信号的滤波(structure under APRX simulink simulation. Achieved in the frequency domain filtering of the signal)
- 2011-10-18 16:45:22下载
- 积分:1
-
1234435
用matlab 7.0编写的滑模变结构仿真的例子。(S-function for continuous state equation
function [sys,x0,str,ts]=s_function(t,x,u,flag)
switch flag,
Initialization
case 0,
[sys,x0,str,ts]=mdlInitializeSizes
Outputs
case 3,
sys=mdlOutputs(t,x,u)
Unhandled flags
case {2, 4, 9 }
sys = []
Unexpected flags
otherwise
error([ Unhandled flag = ,num2str(flag)])
end
mdlInitializeSizes
function [sys,x0,str,ts]=mdlInitializeSizes
sizes = simsizes
sizes.NumContStates = 0
sizes.NumDiscStates = 0
sizes.NumOutputs = 3
sizes.NumInputs = 1
sizes.DirFeedthrough = 1
sizes.NumSampleTimes = 0
sys=simsizes(sizes)
x0=[]
str=[]
ts=[]
function sys=mdlOutputs(t,x,u)
x11d=sin(pi*t/2)
x21d=cos(pi*t)
x31d=1
sys(1)=x11d
sys(2)=x21d
sys(3)=x31d
)
- 2012-10-19 11:43:12下载
- 积分:1
-
Fisher-linear-discriminant-method
此为模式识别中的Fisher线性判别方法求分类器。进行了男、女错误率和总错误率的统计。
全部程序流程如下:
1、读取FAMALE.TXT文件把身高或体重给数组,并求x1的样本均值m1和内离散度S1;
2、读取MALE.TXT文件把身高或体重给数组,并求x2的样本均值m2和内离散度S2;
3、求最佳变换向量和阀值点;
4、读取Test2.txt文件把对应的身高或体重给数组A并求A的样本数M;
5、把最佳变换向量和阀值点、x代入判别方程g(x);
6、对本判别的错误率进行统计。(This is the pattern recognition method, to calculate the Fisher linear discriminant classifier .Were male , female and total error rate error rate statistics .
All program flow is as follows :
1 , read FAMALE.TXT file to height or weight to the array, and find the sample mean m1 x1 and internal dispersion S1
2 , read MALE.TXT file to height or weight to the array, and find the sample mean m2 and x2 within the dispersion S2
3 , for the best transformation vector and the threshold point
4 , read Test2.txt file to the corresponding height or weight requirements for the array A and A is the number of samples M
5 , the best transformation vector and the threshold point , x substituted into the discriminant equation g (x)
6 , determine the error rate of the statistics .
)
- 2012-02-02 20:27:49下载
- 积分:1