-
Filterdesign
matlab重要的学习资料 初学者的好帮手 程序代码非常重要(matlab important information for beginners to learn a good helper program code is very important)
- 2010-10-06 19:48:42下载
- 积分:1
-
PCA
人耳识别的主成分分析MATLAB算法M文件(PCA)
- 2009-11-04 20:09:06下载
- 积分:1
-
firefly_simple
The firefly algorithm (FA) is a metaheuristic algorithm, inspired by the flashing behaviour of fireflies. The primary purpose for a firefly s flash is to act as a signal system to attract other fireflies. Xin-She Yang formulated this firefly algorithm by assuming
- 2013-11-28 11:09:15下载
- 积分:1
-
T_ENGINE_MODEL
Matlab/simulink环境下开发的,基于平均值理论的发动机动力学模型,适用于发动机或整车控制策略开发使用。(Developed under the Matlab/Simulink environment, based on the average of the theory of engine dynamic model, suitable for the engine or vehicle control strategy developed using.)
- 2013-05-09 16:05:45下载
- 积分:1
-
CIRplots
CIR plot generation in ICI Cancellation in OFDM systems.
- 2014-02-16 02:41:35下载
- 积分:1
-
imagerestoration
图像复原
退化模型
连续退化模型
离散退化模型
复原的代数方法
代数复原原理
逆滤波复原
最小二乘方滤波
MATLAB 实现图像复原
维纳滤波复原
规则化滤波复原
Lucy-Richardson 复原
盲去卷积复原
图像复原的其它 MATLAB 函数 (Degradation of image restoration model continuous degradation model discrete degradation model recovery principles of algebra algebraic inverse filter to recover to recover MATLAB least squares filtering for image restoration Wiener filter to recover the rules-based filtering to recover Lucy-Richardson deconvolution to recover Blind Image Restoration to recover the other MATLAB Functions)
- 2009-12-23 12:12:34下载
- 积分:1
-
academic_achievement1
说明: 这是一个用来进行同类数据统计平均值及加权平均值的Matlab程序,可以试试。
- 2010-04-21 10:13:16下载
- 积分:1
-
yuanzhuti_zhangpeng_62090105
简单条件下规则二度体重力异常的正演计算-圆柱体(Simple conditions under the rules of the second abnormal weight force of the forward calculation- cylinder)
- 2020-07-03 00:40:02下载
- 积分:1
-
Serial_Terminal
A Complete Serial Port Communication terminal. It has several options including parity bit, baud rate, stop bit, change com port and many more.
- 2016-02-29 14:54:55下载
- 积分: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