-
vblast
The main file in this list of programs is "vblast.m". Type "help vblast" on the command line for details.Study the coding
by stepping through the program. These programs require around 5000 packets for reasonable plotting accuracy.This has been
implemented for a 2x2 system. The reader can program other variations.
The program has been tested on MATLAB version 6.0 and above with signal processing toolbox and communication toolbox options.
- 2008-07-11 16:47:20下载
- 积分:1
-
huachuangjiance
说明: matlab下实现对高斯噪声下的小目标的滑窗检测。数据为1000个点,滑窗窗口大小为30,每次滑动一个点的数据。采用的是窗内30个数据先各自平方,然后求和,再除以窗口大小。实验表明能有效检测雷达目标信号。(matlab under Gaussian noise to achieve a small target detection sliding window. Data for 1000 point sliding window window size is 30, each time moving a point of data. Using the data before the window each 30 square feet, and then summed, divided by the window size. Experiments show that the radar target signal can be detected.)
- 2010-04-16 14:59:10下载
- 积分:1
-
shuju
关于非线性拟合的介绍, 与处理适合初学者的使用。(Introduction of non-linear fitting, and processing for beginners use.)
- 2010-05-12 11:43:22下载
- 积分:1
-
fzh1
用于函数逼近的BP算法程序,matlab源码(function approximation for the BP algorithm procedures, Matlab FOSS)
- 2006-11-03 22:34:42下载
- 积分:1
-
bpskawgnRayleigh
BPSK信号在高斯和瑞利信道下的误码率曲线用matlab实现(Modulation and demodulation)
- 2020-12-07 15:49:21下载
- 积分:1
-
多智能体
关于多智能体的一些程序,有相关研究的随取随用。(the parameters of multi-agent system)
- 2021-04-14 16:18:55下载
- 积分:1
-
OMNetpp
Modeling and Analysis of Computer Networks Course
- 2010-07-15 08:42:28下载
- 积分:1
-
af-dfincooperationcommunication
协作通信中的af-df转发源码,matlab版本
(Cooperative communications forward in af-df source, matlab version)
- 2010-12-04 12:58:14下载
- 积分:1
-
fractal-use
分形的练习一
①Koch曲线
用复数的方法来迭代Koch曲线
clear i 防止i被重新赋值
A=[0 1] 初始A是连接(0,0)与(1,0)的线段
t=exp(i*pi/3)
n=2 n是迭代次数
for j=0:n
A=A/3 a=ones(1,2*4^j)
A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a]
end
plot(real(A),imag(A))
axis([0 1 -0.1 0.8])
②Sierpinski三角形
A=[0 1 0.5 0 0 1] 初始化A
n=3 迭代次数
for i=1:n
A=A/2 b=zeros(1,3^i) c=ones(1,3^i)/2
A=[A A+[c b] A+[c/2 c]]
end
for i=1:3^n
patch(A(1,3*i-2:3*i),A(2,3*i-2:3*i), b ) patch填充函数
end
(Fractal
Exercise One
The ① Koch curve
Plural iteration Koch curve
clear i to prevent i is reassigned
A = [0 1] initial A is a connection (0,0) and (1,0) of the segments
t = exp (i* pi/3)
n = 2 n is the number of iterations
for j = 0: n
A = A/3 a = ones (1,2* 4 ^ j)
A = [A (t* A+ a/3) (A/t+ (1/2+ sqrt (3)/6* i)* a) A+2/3* a]
end
plot (real (A), imag (A))
axis ([0 1-0.1 0.8])
② Sierpinski triangle
A = [0 1 0.5 0 0 1] initialized A
n = 3 the number of iterations.
for i = 1: n
A = A/2 b = zeros (1,3 ^ i) c = ones (1,3 ^ i)/2
A = [A A+ [c b] A+ [c/2 c]]
end
for i = 1:3 ^ n
patch (A (1,3* i-2: 3* i), A (2,3* i-2: 3* i), b ) patch filled function
end)
- 2013-03-02 10:03:09下载
- 积分:1
-
yankebingchuang2
此算法先把伤病人员进行特殊对待,在计算出其他人的入院日期,表二的出院日期为 统计的期望值
运用是要改变 数据的初值 和u值(数据录入个数);(This algorithm first special treat the sick and wounded, in the calculation of other people' s admission date, discharge date in Table II used for the statistical expectation is to change the initial data and u values (the number of data entry) )
- 2011-07-25 19:01:05下载
- 积分:1