-
continuous-signal
IT GIVES SAMPLING THEOREM
- 2014-11-08 14:47:31下载
- 积分:1
-
dongtaiboxintu
matlab GUI串口通信,实时采集数据,曲线显示,接收和发送数据(matlab GUI serial communication, real-time data collection, curve display, receiving and sending data)
- 2020-11-27 21:49:32下载
- 积分:1
-
Canibales
Programa de misioneros y canibales con búsqueda en profundidad
- 2010-09-04 06:12:25下载
- 积分:1
-
Produce-a-variety-of-distribution
1.duishuzhengtai:产生对数正态分布
2.gaussian:产生数据量为n的两个相互独立高斯分布y1、y2
3.junyun:自定义 0-1的均匀分布,n代表数据量,一般要大于1024(蒙特卡罗)
4.ruili:瑞利分布,m是瑞利分布的参数,n代表数据量,n一般要大于1024
5.kaifeng:产生开丰分布,其中m代表开丰分布的自由度,n表示产生的点数量
6.tfenbu:本函数产生自由度为m,数据量为n的t分布。
7.weibuer:a=1时,是指数分布;a=2时,是瑞利分布(1.duishuzhengtai: generating lognormal 2.gaussian: generating a data quantity n of two mutually independent Gaussian distribution Y1, Y2 3.junyun: custom uniform distribution of 0-1, n represents a data amount, generally large in 1024 (Monte Carlo) 4.ruili: Rayleigh distribution, m is a parameter of the Rayleigh distribution, n representative of the amount of data, n is generally greater than 1024 5.kaifeng: generating open abundance distribution, wherein m represents an open-abundance distribution freedom of degrees of freedom, n is the number of points generated 6.tfenbu: This function generates m, the amount of data for n t distribution. 7.weibuer: a = 1, the exponential distribution a = 2, is a Rayleigh distribution)
- 2012-09-04 20:02:08下载
- 积分:1
-
AMT
figure imagesc(Img,[0 255]) colormap(gray) hold on
bw = roipoly
phi = 2*(0.5-bw)
tic
for n = 1:200
phi = Evo_ILF_2D(phi,mu,lambda,epsilon,timestep,Img_lap)
pause(0.05)
imagesc(Img, [0, 255]) colormap(gray) hold on
[c,h] = contour(phi,[0 0], b )
iterNum=[num2str(n), iterations ]
title(iterNum)
hold off
- 2015-03-16 13:37:29下载
- 积分:1
-
leach
leach matlab code for wireless sensor networks
- 2014-01-20 16:23:34下载
- 积分:1
-
Antenna-Theory-a-Design-3rd-Ed
ALL MATLAB CODES RELATED TO ANTENNA
- 2015-04-17 12:59:44下载
- 积分:1
-
matlab
算术编码与译码的matlab程序
信息论
通信
(matlab)
- 2009-06-06 18:22:15下载
- 积分:1
-
LMS_matlab
LMS算法matlab实现,可以进行验证(LMS algorithm matlab realize)
- 2012-11-13 20:56:00下载
- 积分:1
-
conversion_gui
function ret = Int2Hex(var)
Prints integer array to hexadecimal string
varType = class(var)
cast signness away:
if ( u ~= varType(1) )
varType = [ u varType]
var = typecast(var,varType)
end
nBits = str2double(varType(5:end))
if (64 == nBits)
split 64 bit case into two 32 s
cuz dec2hex doesn t handle 64 bit...
varType(5:end) = 32
var = typecast(var,varType)
end
ret = dec2hex(var)
if (64 == nBits)
littleEndian = all(typecast(uint32(1), uint16 )==[1 0])
first = 1 + littleEndian
second = 2 - littleEndian
ret = [ret(first:2:end,:),ret(second:2:end,:)]
end
end
- 2010-07-30 09:39:56下载
- 积分:1