-
ramp
RAMP response of SISO LTI models.
- 2010-08-06 22:27:28下载
- 积分: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
-
T3
极化SAR图像分类数据,数据为T矩阵,为原始数据部分图像,包括free分解后数据以及各分量数据(Polarization SAR image classification data, data for the T matrix, part of the image to the original data, including the breakdown of free data and each component of the data)
- 2014-02-26 20:44:48下载
- 积分:1
-
qps_bpsk_implementation
This code is for QPSK BPSK QAM Implementations
- 2013-01-17 22:45:23下载
- 积分:1
-
Monte Carlo method
用蒙特卡洛原理计算定积分的几个例子,使用平台MATLAB,程序里有问题描述和程序的详细讲解(Monte Carlo method used to calculate a few examples of fixed points, the use of platform MATLAB, the program has a problem description and procedures to explain in detail)
- 2017-10-31 16:58:25下载
- 积分:1
-
matlab
实现butterworth滤波器,能够输出幅频特性曲线(Realize Butterworth filter, to output the amplitude-frequency characteristic curve)
- 2008-03-15 11:12:30下载
- 积分:1
-
GE-0106-Basic-Engineering-II
basic engineering (electrical and electronics) ppt
- 2013-10-21 13:36:11下载
- 积分:1
-
segment
基于阈值分割心音信号,阈值可根据信号调整,程序给出心音分割的起止位置。(Threshold-based segmentation of heart sound signals, the threshold can be adjusted according to the signal, the program gives the starting and ending positions of heart sounds segmentation.)
- 2020-10-29 16:29:56下载
- 积分:1
-
Matlab_update_GSDLMS
System identification with adaptive filter using full and partial-update Generalised-Sideband-Decomposition Least-Mean-Squares
- 2009-05-22 23:05:17下载
- 积分:1
-
car_detect
检测交通视频中的汽车,运行环境必须是matlab2009a以上版本,里面有程序和测试视频(car detect with matlab)
- 2010-05-25 13:45:34下载
- 积分:1