-
Breast
说明: 乳腺X光片中可疑区域的多分辨率分割的源代码(Breast X-ray film multi-resolution segmentation of suspicious regions)
- 2010-04-05 16:57:22下载
- 积分: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
-
grrr
vertical handover decision making algorithms using matlab
- 2015-01-06 13:27:46下载
- 积分:1
-
chaos
时频处理的一个例子,在时频分析的matlab那本书里面有详细的说明(Deal with time-frequency an example, in the time-frequency analysis of matlab that book there are detailed instructions)
- 2007-11-01 23:33:06下载
- 积分:1
-
carrier.m
讲的是扩频通信系统中载波同步和码同步算法的Matlab程序(About the spread spectrum communication system, synchronization and carrier synchronization algorithms for Matlab program code)
- 2010-08-20 13:17:13下载
- 积分:1
-
PRAssign
脱机手写体识别Matlab源程序
包括特征提取、bayes分类器、K近邻分类及最近邻分类。
TestScriptRecognition.m:测试代码
ScriptFeaExtract.m :特征提取
KNearestEstimate.m :K近邻估计
NearestEstimate.m : 最近邻估计
BayesTrain.m :训练bayes分类器
Bayes.m :测试bayes分类器
CrossValidate.m :m交叉验证
(Offline Handwriting Recognition Matlab source including feature extraction, bayes classifier, K-nearest neighbor and nearest neighbor classifier. TestScriptRecognition.m : ScriptFeaExtract.m test code : Feature Extraction KNearestEstimate.m : K-nearest neighbor is estimated NearestEstimate.m : nearest neighbor is estimated BayesTrain.m : Training bayes classifier Bayes.m : Test bayes classifier CrossValidate.m : m cross-certification)
- 2007-06-24 21:39:20下载
- 积分:1
-
SAR
sar成像,基于距离多普勒算法的matlab成像算法,具有距离徙动校正功能(SAR imaging, matlab imaging algorithm based on range Doppler algorithm, has the range migration correction function)
- 2021-04-20 09:28:50下载
- 积分:1
-
statcom_48pulsewind
说明: Matlab code for 30 bus system to determine ATC
- 2021-04-17 17:28:52下载
- 积分:1
-
NSGA-II
NSGA - II A multi-objective optimization algorithm
- 2021-01-05 21:28:55下载
- 积分:1
-
zig
说明: 输入2维数组和行数列数,进行之字形重新排列,输出1维数组,比如图像的DCT变换系数(DCT,zigzag)
- 2010-04-12 18:25:43下载
- 积分:1