-
correlation2
相关函数
两个数组相关
涉及两个正变换和一个反变换(Correlation function related to the two arrays are involved in both transformation and an anti-transformation)
- 2010-10-22 20:10:18下载
- 积分:1
-
matlab2exe
MATLAB语言编写的程序,生成对应可执行文件exe的方法和介绍。(A program written in MATLAB to generate corresponding executable exe method and presentation.)
- 2011-06-09 15:48:46下载
- 积分:1
-
qiaoliangjiance
这是可以用于数据频谱分析的源程序代码,使用MATLAB编写而成的(This is can be used in the source code of the data spectrum analysis, the use of MATLAB written in)
- 2012-06-04 15:03:01下载
- 积分:1
-
fatigue-detection_matlab
疲劳检测Matlab程序,基于肤色的人脸识别,基于霍夫变换的圆检测,通过眨眼频率判断疲劳程度(fatigue detection)
- 2021-03-24 10:39:16下载
- 积分:1
-
boshuxingcheng
波束形成中music和常规波束形成比较。常规波束形成方法、music方法。可直接运行,其中有详细的文字解释。(Beamforming music and conventional beamforming comparisons. Conventional beamforming method, music methods. Can be directly run, including a detailed explanation of the text.)
- 2015-03-30 21:23:14下载
- 积分:1
-
yiwangyinzizuixiaoerchengfa
说明: 这是黑龙江大学自控理论专业同学在最优估计课程当中用matlab编写的带遗忘因子的最小二乘法!(This is the theory of controlled Heilongjiang University students in professional courses optimal estimate prepared by using Matlab forgotten factor with the least squares method.)
- 2020-11-27 15:09:30下载
- 积分:1
-
BER
bpsk,qpsk等的误码率比较程序,可直接运行
(bpsk, qpsk comparison procedures such as bit error rate can be directly run)
- 2011-05-05 21:21:16下载
- 积分:1
-
part_I
Solves part b for three values of p: 0.1, 0.3, 0.5, and 0.8.
To solve for other values of p, just change the
numbers in the vector p below.
- 2011-05-27 20:51:26下载
- 积分:1
-
Unt
这是我自编的PQ分解法小程序,采用极坐标形式表示节点电压。(This is my small self of the PQ decomposition process is expressed by polar coordinates node voltage.)
- 2010-10-15 11:44:34下载
- 积分: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