-
By-Arthur7777777777777777
女声 男声转换的程序 用matlab做的,运行无差错,供大家参考(Female male conversion process using matlab to do, running error-free, for your reference)
- 2014-11-25 22:11:25下载
- 积分:1
-
PANTELAJIN
说明: Poincare映射图像有不同的做法,一般是通过画出系统的Poincare映射图来看是否为混沌(Poincare map images are different approaches to the general through the draw system in terms of Poincare map for the chaotic)
- 2021-04-26 22:28:45下载
- 积分:1
-
shachejuli
matlab 程序,计算刹车距离,代码详细,有适当的注释(matlab )
- 2012-05-15 10:30:46下载
- 积分:1
-
pin
matlab的一个pin程序,具体内容呵呵,自愿下载哈,本人自己认真书写的。谢谢(Matlab a pin, specific content ha ha, willing to download ah, herself carefully written. thank you)
- 2013-03-10 23:04:59下载
- 积分:1
-
graygrad
计算二维灰度-梯度直方图,很好用,特别好,啦啦啦(Calculate two-dimensional grayscale-gradient histogram, very good use, especially good, la la la)
- 2018-06-02 16:42:41下载
- 积分:1
-
newton-method
说明: 适用于方程求根,Newton迭代法。求解方程的根。(Newton method to solve the functions.)
- 2011-04-07 22:58:08下载
- 积分:1
-
lfm
线性调频信号的matlab产生程序,适合初学者参考(Matlab linear FM signal generation process, for reference for beginners)
- 2010-05-23 18:27:00下载
- 积分:1
-
1234
光伏发电系统的并网发电的仿真,系统带有MPPT功能。(Photovoltaic system simulation grid system with MPPT function.)
- 2013-07-05 09:31:21下载
- 积分:1
-
huffmam_decoding
the decoding of Huffman codes is shown. For the decoding the coding tree has to be constructed using the information which has to be transmitted as well.
Following that the input is read bitwise and for each 0 a left turn is taken and for each one a right turn until a leave is reached. In this case the value of the leave (usually a character) is output, continuing after that at the root.
- 2010-08-11 04:03:25下载
- 积分: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