-
ridge
应用回归分析中岭回归的matlab程序代码(RIDGE REGRESSION)
- 2011-01-06 20:31:38下载
- 积分:1
-
chap10Mfiles
数字信号处理第十章 FIR滤波器的设计 代码实现(Digital Signal Processing Chapter FIR filter design code)
- 2014-01-07 22:42:38下载
- 积分:1
-
caponBF
DOA 中的caponBF, 阵列信号处理的一个基本问题就是确定同时处在空间某一区域内的多个感兴趣的空间信号的方向或位置,即实现信号的分辨和定位,这也就是雷达、声纳最重要的任务之一,为了解决这一基本问题,主要采用常规波束形成法。(DOA of caponBF, a fundamental problem in array signal processing is to determine in space at the same time more interested in a particular area of space signal direction or position, namely the realization of signal resolution and positioning, which is one of the most important task in radar, sonar, in order to solve the basic problem, mainly using the conventional beam-forming method.)
- 2018-10-16 15:29:07下载
- 积分:1
-
_solar-program--
this is solar cell matlab prog
- 2012-04-28 22:15:49下载
- 积分:1
-
PIDMH
应用matlab进行的模糊PID编程,经过多次调试,使用效果较好。希望对你的学习有所帮助。(Application of matlab for fuzzy PID programming, a number of debugging better. I hope to be helpful to your learning.)
- 2012-05-20 12:01:01下载
- 积分:1
-
PVmam_POcode_boost
simulation photovoltaiv panel with mppt boost converter
- 2014-11-06 19:34:35下载
- 积分:1
-
TDOA_estimation_Newton
基于MATLAB仿真程序,使用牛顿迭代法,在已知时延先验信息的基础上,对目标实现无源定位。
程序内还包含符号迭代和等值线绘图等角复杂代码。希望对研究无源定位的同志有所帮助。(MATLAB-based simulation program, using Newton s iterative method, the known delay on the basis of prior information on target to achieve passive positioning.
Symbols within the program also includes iteration and contour drawing isometric complex code. Hope the study of passive location comrades help.)
- 2011-11-07 17:29:01下载
- 积分:1
-
IBP-algorithm
迭代反投影的高分辨率图像重建算法matlab代码(High-resolution iterative back-projection image reconstruction algorithm matlab code)
- 2021-03-04 10:19:32下载
- 积分:1
-
DCAinJOINT
通讯系统仿真(Matlab)Dynamic Resource Allocation(DCA) in JOINT system(Communication system simulation (Matlab) Dynamic Resource Allocation (DCA) in JOINT system)
- 2007-10-15 03:50:56下载
- 积分: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