-
LS_SVMlab
说明: 最小二乘支持向量机工具箱,学习支持向量机必备工具(Least squares support vector machine toolbox, an indispensable tool for learning support vector machines)
- 2010-04-20 16:05:55下载
- 积分:1
-
fsafgcommand_window_text
这个m-文件允许你导出所有在命令窗口中的文本到字符串单元阵列,每个条目是一个从窗口文本行。未分析的原始字符串也可以,如果需要的话。
操作非常简单 -此文件查找在根窗口,并得到适当的Java对象从文本。
我一直在寻找一种方式做,特别是一些软件中的错误我始终跟踪这,似乎已经没有人写了这种方法,所以我现在在这里供您使用。(This m-file allows you to export all text in the Command Window to a cell array of strings, each entry being a line of text from the window. The unparsed raw string is also available, if desired.
Operation is very simple- this file looks for the appropriate java object in the root window and gets text from it.
I was looking for a way to do this, particularly for error tracking in some software I maintain, and nobody seemed to have written up this method, so I present it here for you to use.)
- 2011-05-23 10:33:44下载
- 积分:1
-
Matlab_HspiceToolbox_986903066
用于Matlab的hispice仿真程序,
图形界面(Hispice for the Matlab simulation program, a graphical interface)
- 2008-12-10 22:13:52下载
- 积分:1
-
1
说明: 实现了PCM编码和译码的功能,适合各个Matlab版本运行。(Achieve a PCM encoding and decoding functions for each version of Matlab to run.)
- 2011-12-02 10:14:59下载
- 积分:1
-
matalb_anli
购买matlab学习类书籍中光盘自带matlab实例教程,附有完整代码,希望有需要的朋友可以借鉴。(Buy them in the books matlab disc with matlab instance tutorial, with complete code, hope that a friend in need can draw lessons from.)
- 2017-03-16 10:07:42下载
- 积分: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
-
xxgh
此程序在matlab环境下运行,适于求解线性规划一类问题。(单纯形法)(This program runs under matlab environment, suitable to solve a class of linear programming problems. (Simplex method))
- 2010-06-17 21:39:16下载
- 积分:1
-
save_dx
这是一个将矩阵型数据转化为类型为.dx的曲线图文件的程序代码(This is a type of data into the matrix type. Dx graph paper code)
- 2011-04-27 11:50:00下载
- 积分:1
-
sls
关于稀疏最小二乘算法的matlab程序,适于学习和运用!(Sparse least-squares algorithm on matlab procedures, appropriate for the learning and use!)
- 2008-07-31 19:32:13下载
- 积分:1
-
simulated-annealing
模拟退火算法的MATLAB范例程序!对初步了解的初学者有不错的帮助!(Simulated annealing algorithm MATLAB example program! Preliminary understanding of the beginners have a good help!)
- 2011-11-07 14:49:36下载
- 积分:1