-
MiniProject
exercise for fuzzy inference engine
- 2010-12-24 16:46:03下载
- 积分: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
-
genetic-algorithm-TSP
介绍求解TSP问题的遗传算法,附带源代码和城市节点数据。(Introduced genetic algorithm for solving TSP problem,including the supplementary data source code and city nodes.)
- 2014-12-04 16:04:58下载
- 积分:1
-
qiantuihuidaifa
前推回代法潮流计算实例-33节点、6节点(Push back on behalf of the law before the trend calculation example-33 node, node 6)
- 2020-07-22 16:18:44下载
- 积分:1
-
math1
MATLAB经典算法程序,插值与拟合包含PPT讲义,可对照matlab程序进行学习(MATLAB procedures classic algorithm, interpolation and fitting contains PPT handouts can control matlab program to study)
- 2009-01-15 12:09:31下载
- 积分:1
-
san
近20年来,阵列信号处理已成为信号处理的一个重要分支,本次实验就是通过MUSIC(Multiple Signal Classification)算法对混叠有高斯白噪声的双信源信号进行频谱分析。(Space there is more than one letter (No.) source, it is often necessary to separate these signals in order to track or detect the spatial signal we are interested in, inhibition of those who are considered interference signal. To this end, the need to use the antenna array to receive multiple spatial signal analysis and processing of the the spatial signal received by the antenna array known as array signal processing. The past 20 years, array signal processing has become an important branch of signal processing, this experiment is the MUSIC (Multiple Signal Classification) algorithm aliasing Gaussian white noise dual source signal spectrum analysis.)
- 2013-05-01 13:48:52下载
- 积分:1
-
BUTTERWORTHfilters
buttreworth filters
- 2010-11-10 14:10:38下载
- 积分:1
-
shiyan2
通信网实验报告 用MATLAB实现话务量的计算(Communication network traffic using MATLAB realize the calculation)
- 2013-07-25 19:49:04下载
- 积分:1
-
cjz
用户提供样本数据后,对样本数据做c均值frm聚类分析。(c均值聚类)
- 2009-09-16 19:29:49下载
- 积分:1
-
BERfangzhen
在这个例子中,我们对有三条固定路径的AWGN多径信道中的QPSK系统进行BER性能仿真,并与在理想的AWGN信道(没有多径)中同样系统的BER性能进行比较。(In this example, we have three fixed-path multipath AWGN channel QPSK system BER performance simulation, and in an ideal AWGN channel (no multipath) in the same system BER performance comparison Progressive line.)
- 2009-03-19 11:22:01下载
- 积分:1