-
Conwaylife
元胞自动机的生命游戏用matlab实现,非常好的一个程序(Coway s Life is a very good program)
- 2010-06-08 10:35:49下载
- 积分:1
-
Kalman
kalman滤波matlab模拟供爱好者参考(kalman filtering matlab Analog reference for lovers)
- 2009-03-10 11:21:56下载
- 积分:1
-
To_plot_the_Rectangular_window_for_filters
rectangular window for filter matlab code with example
- 2011-01-14 15:07:28下载
- 积分:1
-
dataread
说明: 该程序将红外热像图的tmp文件以数据读入到MATLAB中(The program of infrared thermal images of the tmp file to the data read into MATLAB,)
- 2010-04-29 15:03:31下载
- 积分:1
-
anli1
神经网络30个案例分析源码,又名智能控制30个案例分析,案例一(30 case studies of neural network source code, also known as intelligent control 30 case studies, case a)
- 2014-10-17 09:54:01下载
- 积分:1
-
2008_2
(1) 在某些无线信道中,多普勒频移会引起无线信道输出信号的混叠。请描述产生混叠的各种原因;
(2) 无线信道中的多普勒谱有一种经典谱(classic spectrum),请解释产生这种谱形状的机理;
(3) 请用Simulink工具编写代码(S-Function方式),产生一单径瑞利信道,其多普勒谱为经典谱,其中移动速率为120km/h。并请回答:证明自己用计算机产生的经典谱是正确的可能方法。
((1) in certain wireless channel, the Doppler frequency shift will be caused by wireless channel output signal aliasing. Please describe the resulting aliasing of a variety of reasons (2) wireless channel Doppler spectrum there is a classical spectrum (classic spectrum), please explain such a spectral shape of the mechanism (3) Please use Simulink tools for writing code ( S-Function mode), resulting in a single Path Rayleigh channel, the Doppler spectrum for the classical spectrum, including mobile rate of 120km/h. And please answer: prove that they used computer-generated classical spectrum is correct possible ways.)
- 2020-12-30 11:39:00下载
- 积分:1
-
Matlab_changyongmingling
Matlab常用命令文档,三部分,包括各种例子,充分让你了解各个命令的使用方法.(Matlab commands commonly used documents, in three parts, including a variety of examples, and fully understand the command you use.)
- 2008-04-22 14:53:24下载
- 积分:1
-
LS
说明: Mathematical models- choice of model class LS
- 2010-04-24 00:06:34下载
- 积分:1
-
rttarduinouno
model Simulink of arduino
- 2014-01-04 05:06:22下载
- 积分:1
-
output_of_DCT_in_image_fusion
u can calculate DCT
clc
inp = imread( Im1.jpg )
inp1 = imread( Im2.jpg )
A = double(inp(:,:,1))
B = double(inp1(:,:,1))
A1=double(blkproc(A,[8 8], dct2 ))
B1=double(blkproc(B,[8 8], dct2 ))
[r,c] = size(A1)
r1 = []
for i=1:r
for j=1:c
if A1(i,j) > B1(i,j)
r1(i,j)=A1(i,j)
else
r1(i,j)=B1(i,j)
end
end
end
r1= double(r1(:,:,1))
C=blkproc(r1,[8 8], idct2 )
round(C)
C1=idct2(r1)
figure
imshow(uint8(C))
figure
imshow(uint8(C1))
imwrite(uint8(C), dct8x8min.jpg )
- 2011-01-09 23:26:05下载
- 积分:1