-
Hamm
It s matlab programs for Hamming codes. They re Hamming 4/7 and Hamming 11/14. Including encoder, decoder. I hope you enjoy them!
- 2012-04-19 00:07:26下载
- 积分:1
-
c8bp_pid
基于S函数BP神经网络的PID控制器的研究与学习,方便简单,实用性特别强。(S function based on BP neural network PID controller research and study, convenient and simple, practical particularly strong.)
- 2020-11-10 15:19:46下载
- 积分:1
-
a
说明: 基于matlab的图像处理及瑕疵自动检测(Matlab-based image processing and automatic detection of defects)
- 2011-04-20 10:17:20下载
- 积分:1
-
cs-sarcosamp
改进的稀疏度自适应正则化压缩采样匹配追踪算法,在自适应的基础上运用了正则化的思想(Improved adaptive sparsity regularization compressive sampling Matching Pursuit algorithm, based on the use of adaptive regularization ideas)
- 2014-12-22 11:11:55下载
- 积分:1
-
RScode
说明: 这个是RS的原代码,几个文件一起仿真,很有用的(This is the original RS code, with the simulation of several files, very useful)
- 2011-03-15 17:39:36下载
- 积分:1
-
double_pendulum_documentation
The matlab code for double pendulum
- 2012-03-26 20:26:20下载
- 积分:1
-
scankernel
Kernel for All Windows Version make all of them going to die hardware
- 2014-10-02 16:19:05下载
- 积分:1
-
Level-analysis-of-the-code
用matlab描述的层次分析的代码,它是一种先分解后综合的算法(The the analytic hierarchy described using matlab code, it is a first decomposition comprehensive algorithm)
- 2012-09-04 16:01:15下载
- 积分:1
-
Untitled
三分之一倍频程处理程序,适用于声学及振动信号处理(the third singal )
- 2011-12-11 20:36:12下载
- 积分:1
-
dct
M=512 原图像长度
N=64
K=8
I=zeros(M,M)
J=zeros(N,N)
BLOCK=zeros(K,K)
显示原图像
I=imread( f:ceshiyuanshitu.bmp )
figure
imshow(I)
xlabel( 原始图像 )
显示水印图像
J=imread( f:ceshilogistic_nuaa64.bmp )
figure
imshow(J)
xlabel( 水印图像 )
嵌入水印
tem=1
for p=1:N
for q=1:N
x=(p-1)*K+1
y=(q-1)*K+1
BLOCK=I(x:x+K-1,y:y+K-1)
BLOCK=dct2(BLOCK)
if J(p,q)==0
a=-1
else
a=1
end
BLOCK(2,1)=BLOCK(2,1)*(1+a*0.01)
BLOCK=idct2(BLOCK)
I(x:x+K-1,y:y+K-1)=BLOCK
end
end
显示嵌入水印后的图像
figure
imshow(I)
xlabel( 嵌入水印后的图像 )
imwrite(I, f:ceshiembedded.bmp )
- 2010-06-13 18:43:39下载
- 积分:1