-
rectifire
Starting and speep control of DC machins with dc to dc rectifire (PWM)
- 2010-10-18 17:21:27下载
- 积分:1
-
suspension
对悬架系统进行分析 净MATLAB仿真得到控制器的结果(suspension system )
- 2009-11-21 10:39:53下载
- 积分:1
-
GLtree3DMex
通过三纬最邻近快速搜索方法找出图像里最相似的部分(FAST K-NEAREST NEIGHBOURS SEARCH 3D VERSION
)
- 2009-07-16 21:22:13下载
- 积分:1
-
YUSUN
采用经典的数据关联方法算法实现的对单目标和多目标的跟踪(Classic data association algorithm was adopted to realize the track of single objective and multiple objectives)
- 2013-12-26 22:57:19下载
- 积分:1
-
optical_function
光的振幅扩散函数、光学传递函数和点扩散函数,在光学仿真和光线传播中必须要用(ASF、OTF and PSF of light, having important using in light transmission)
- 2021-04-26 11:58:45下载
- 积分:1
-
pso
关于PSO的PPT讲解,对学习和了解PSO优化算法很有帮助(PSO on the PPT on the study and understanding of optimization algorithm PSO helpful)
- 2008-07-30 09:35:01下载
- 积分:1
-
07apriori
apiriori algoritm in matlab for computer students
- 2012-05-18 19:57:03下载
- 积分:1
-
Bairstow
This matlab code includes the solution for root off a polynomial by Bairtow method .....
- 2015-01-19 05:14:37下载
- 积分:1
-
MATLAB
一道matlab例题,适合初学者学习,内容仅供参考,如有更好的方法请推荐。(A matlab example, suitable for beginners to learn, is only for reference, if you recommend a better way.)
- 2010-06-08 11:24:41下载
- 积分: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