-
matlab
mpsk生成代码,各种方式生成的代码 ,包括2psk,qpsk,8psk,16psk等(MPSK generate code, generate code in various ways, including 2psk, qpsk, 8psk, 16psk such as)
- 2008-12-22 15:06:34下载
- 积分:1
-
contourlet_toolbox
contourlet的工具箱,matlab和C代码(contourlet toolbox, matlab and C code)
- 2010-05-29 15:33:02下载
- 积分:1
-
Poincaer
说明: 用于计算庞加莱截面的MATLAB的源程序(MATLAB Program for Making Poincare Section)
- 2021-03-11 14:59:25下载
- 积分:1
-
2
说明: 对信号类型的说明,并画出其相应的波形,求出信号的功率和能量。(Description of the type of signal, and draw the corresponding waveform, find the power and energy of the signal.)
- 2014-12-17 17:04:36下载
- 积分:1
-
kenstone
主要用于建模校正集和预测集样品的选择。近红外光谱模型(Mainly used for modeling calibration set and prediction set of samples to choose from.)
- 2015-09-10 15:29:20下载
- 积分:1
-
Untitled6
图像分割,想通过对眼底图像分割进行视盘自动定位(Segmentation, think through the fundus image segmentation disc automatic positioning)
- 2016-06-23 10:09:41下载
- 积分:1
-
Viterbidecoder
用VITEBI算法对信道输出解码。这个算法既能用于卷积码的软判决解码,也能用于硬判决解码(failed to translate)
- 2010-01-16 17:02:48下载
- 积分:1
-
MATLAB-7-engineer
matlab engineer solution
- 2012-06-04 14:52:05下载
- 积分:1
-
16QAM
16QAM modulation and demodulation in matlab.
Maybe it will be useful for you.
- 2012-07-02 21:30:59下载
- 积分:1
-
dsakf
% 文件名:randlsbget.m
% 程序员:余波
% 编写时间:2007.6.25
% 函数功能: 本函数将完成提取隐秘于上的秘密信息
% 输入格式举例:result=( scover.jpg ,56, secret.txt ,2001)
% 参数说明:
% output是信息隐藏后的图象
% len_total是秘密信息的长度
% goalfile是提取出的秘密信息文件
% key是随机间隔函数的密钥
% result是提取的信息
function result=randlsbget(output,len_total,goalfile,key)
ste_cover=imread(output)
ste_cover=double(ste_cover)
% 判断嵌入信息量是否过大
[m,n]=size(ste_cover)
frr=fopen(goalfile, a )
% p作为信息嵌入位计数器将信息序列写回文本文件
p=1
% 调用随机间隔函数选取像素点
[row,col]=randinterval(ste_cover,len_toal,key)
for i=:len_toal
if bitand(ste_cover(row(i),col(i)),1)==1
fwrite(frr,1, bit1 )
result(p,1)
else
fwrite(frr,0, bit1 )
result(p,1)=0
end
if p==len_total
break
end
p=p+1
end
fclose(frr)
()
- 2007-06-28 16:08:04下载
- 积分:1