-
matlab-uses-100Examples
包括matlab使用的经典的一百个例子。能让你从中总结出matlab的精髓(Including the use of matlab classic example of the 100. Allows you to sum up the essence of matlab)
- 2011-05-12 19:58:21下载
- 积分:1
-
matlab
实上,我们可以把系统框图中外编码器、交织器和内编码器三部分级联后的总体,看作一个级联码的编码器,同理,外译码器、去交织器和内译码器三部分级联后的总体构成了级联码的译码器。
本次仿真外编码采用(7,4)HAMMING码,内编码采用(2,1,3)卷积码。交织编码采用(7,4)卷积交织编码或循环等差交织编码。除特别说明外,交织编码采用前者即(7,4)卷积交织编码。
(failed to translate)
- 2020-12-18 12:39:11下载
- 积分:1
-
conload
The function conload takes a dataset and a model (PCA, PLS, PARAFAC etc.) and calculates congruence loadings which is the extension of correlation loadings to uncentered and multi-way models(The function takes a dataset and a m odel (PCA, PLS, B6 etc.) and calculates congruence loadi ngs which is the extension of correlation loadi ngs to uncentered and multi-way models)
- 2007-04-12 18:25:16下载
- 积分:1
-
618ercichazhi
matlab优化设计,黄金分割法,二次差值法(matlab optimization design, golden section method, the second difference method)
- 2010-07-10 11:10:24下载
- 积分:1
-
meatuxingchuli
这是一一一一一个基于图像平滑处理的程序,附代码(This is eleven thousand one hundred and eleven procedures based on image smoothing, with the code)
- 2010-11-10 08:59:26下载
- 积分:1
-
Shubert
Shubert 函数的源代码。自己做了些修改(Code of Shubert,have some change)
- 2011-01-06 10:39:37下载
- 积分:1
-
Newton
Find Gradient Decent with Newton s method
- 2013-05-05 08:15:14下载
- 积分:1
-
TDOA_chang_fang
说明: 完成TDOA的chang和fang算法,画出了对应的算法散点图及位置误差图像(The simulation of TDOA chang and fang.)
- 2019-09-30 15:46:56下载
- 积分:1
-
6-SPS并联机器人可达工作空间绘制的MATLAB程序
说明: 6RPS工作空间绘制求解matlab程序(6rps workspace solution)
- 2021-02-03 16:59:58下载
- 积分: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