-
Fuzzy
说明: 模糊控制的matlab程序,已经调试成功。包括C语言程序(Matlab fuzzy control procedures, has been debugged. Include the C language program)
- 2010-04-11 23:35:04下载
- 积分:1
-
kalman
说明: 这是一个关于卡尔曼滤波的学习资料,可以帮助初学者学习该滤波算法(This is a study on the Kalman filter information that can help beginners learn the filtering algorithm)
- 2011-04-01 09:18:58下载
- 积分:1
-
kalman
卡尔曼滤波的完整C++源代码,非常全,内含matlab相关的程序,使用时请结合具体状态方程。(Kalman filtering the complete source code, very full.)
- 2013-07-31 15:19:22下载
- 积分:1
-
mani
多种降维方法的一个程序包,包括PCA,ISOMAP, LLED等,GUI,界面直观简单(A variety of dimensionality reduction method package, including PCA, ISOMAP, LLED etc., GUI, simple and intuitive interface)
- 2014-01-19 12:41:32下载
- 积分:1
-
backsamp
BACKSAMP Backsampling the subband images of the directional filter bank
y = backsamp(y)
Input and output are cell vector of dyadic length
This function is called at the end of the DFBDEC to obtain subband images
with overall sampling as diagonal matrices
See also: DFBDEC
- 2010-05-15 12:57:48下载
- 积分:1
-
NMPC
该文件在matlab中实现了非线性mpc,并将其应用到CSRT系统中。(The file in matlab nonlinear mpc, and apply it to the CSRT system.)
- 2021-03-20 20:49:18下载
- 积分:1
-
Pattern-Recognition
分别利用fisher判别法和近邻法对一组声呐数据进行模式识别,计算分类的正确率(Respectively, and the use of fisher discriminant method nearest neighbor method sonar data to a set of pattern recognition, to calculate the correct classification rate)
- 2013-12-21 13:26:13下载
- 积分:1
-
Huffman
This is matlab source files for implementing haffman codes
- 2013-05-21 23:59:57下载
- 积分: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
-
fuzzypid
模糊pid控制,并已经通过调试,程序可行。非常有用(Fuzzy pid control, and has been through the debugging, the program is feasible. Very useful)
- 2010-12-23 10:38:54下载
- 积分:1