-
MEXP100
matlab精彩编程100实例,主要是关于数学函数的。(One hundred examples of good programming matlab, mainly about the math function.)
- 2009-04-04 20:34:51下载
- 积分: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
-
Fourier_Analysis
A simulink model ued for Fourier transformation analysis. It allows the user to select the harmonics number.
- 2011-06-24 05:24:47下载
- 积分:1
-
drilling_control
It is a drilling system control
- 2013-08-25 14:31:05下载
- 积分:1
-
GUI
MATLAB GUI代码,设计了一个适用于FTIR和动态箱组数据分析(MATLAB GUI Code)
- 2013-12-06 11:45:19下载
- 积分:1
-
radix4
This zip file describes about Basic radix 2fft,radix 4fft and shows the basic difference between above mentioned fft with radix 16 fft
- 2010-09-23 12:30:50下载
- 积分:1
-
ESPRIT2014
阵列信号处理的esprit算法 提供了阵列信号DOA估计的一种算法的matlab程序,有注释。(Array signal processing of the esprit algorithm provides an algorithm for the array signal DOA estimation of matlab, with comments.)
- 2014-10-21 21:09:01下载
- 积分:1
-
Matlab---The-Language-of-Technical-Computing
This is a categorized compilation of tips for the MATLAB programmer. Items to help you to browse through them and find information that is useful. Many of the tips include a reference to specific MATLAB documentation that gives you more complete coverage of the topic.
- 2013-12-07 19:14:30下载
- 积分:1
-
matlab.1
说明: MATLAB的课件,大学上课老师的课件,是ppt形式的,比较全面。(MATLAB courseware, courseware University of class teachers)
- 2010-04-28 11:32:33下载
- 积分:1
-
chaqu
对信号进行插值、抽取、抽样率转换的多个小例子(Interpolation, decimation, sampling rate conversion)
- 2013-01-07 15:24:35下载
- 积分:1