-
matlab-algorithm-highlights
matlab常用算法集锦,包括各种微分方程求解方法及函数、矩阵、随机数的求解(matlab commonly used algorithm highlights, including a variety of differential equation solving methods and functions, matrix, random numbers to solve)
- 2013-01-03 17:06:54下载
- 积分:1
-
PSO
粒子群优化算法的源程序代码 经验证是可行的(Personal collection of a directed acyclic graph support vector machine for multi-classification problems)
- 2011-06-09 22:23:33下载
- 积分:1
-
MYWORK
this is also an ECG analyzer source code for mat lab to diagnoses
- 2013-03-15 22:41:34下载
- 积分:1
-
proj_2
Opencv code for Sobel edge detection
- 2013-11-24 22:00:49下载
- 积分:1
-
Design2-DfilterusingWSE
说明: 自己编写的用WSE的方法设计的二维数字滤波器,效果不错。(themselves with WSE prepared by the method of two-dimensional design of digital filters, effectiveness.)
- 2006-04-07 14:00:59下载
- 积分:1
-
control-system-simulation-experiment
2011-2012学年控制系统仿真实验讲义_2009电气专业(2011-2012 school year, the control system simulation experiment handouts the _2009 electrical professional)
- 2012-04-14 16:19:28下载
- 积分:1
-
nrlfppg
NEWTON RAPSHON METHOD FOR LOAD FLOW
- 2014-08-18 00:22:20下载
- 积分:1
-
envelop
说明: 一个很好的求信号包络的MATLAB工具包.(A good demand signal envelope of MATLAB tool kit)
- 2010-04-05 11:12:55下载
- 积分:1
-
GeneticAlgorithm
函数优化,随机输入一个函数,优化产生最优值。(Function optimization, random input a function, optimization produces optimal value.)
- 2011-01-06 00:00:18下载
- 积分:1
-
output_of_DCT_in_image_fusion
u can calculate DCT
clc
inp = imread( Im1.jpg )
inp1 = imread( Im2.jpg )
A = double(inp(:,:,1))
B = double(inp1(:,:,1))
A1=double(blkproc(A,[8 8], dct2 ))
B1=double(blkproc(B,[8 8], dct2 ))
[r,c] = size(A1)
r1 = []
for i=1:r
for j=1:c
if A1(i,j) > B1(i,j)
r1(i,j)=A1(i,j)
else
r1(i,j)=B1(i,j)
end
end
end
r1= double(r1(:,:,1))
C=blkproc(r1,[8 8], idct2 )
round(C)
C1=idct2(r1)
figure
imshow(uint8(C))
figure
imshow(uint8(C1))
imwrite(uint8(C), dct8x8min.jpg )
- 2011-01-09 23:26:05下载
- 积分:1