-
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
-
power_wind_dfig_det
power wind dfig matlab simulink
- 2012-08-03 06:08:50下载
- 积分:1
-
hypot
抛物线法求解
方程的构造方法:给出[0,1]区间上的随机数(服从均匀分布)作为方程的根p*.
设你的班级数为a3,学号的后两位数分别为a2与a1,从而得到你的三次方程
例如:你的31班的12号,则你的方程是21x3+60x2+2x+a0=0的形式.
方程中的系数a0由你得到的根p*来确定.(parabolic equation method Construction Methods : given interval [0,1] on the random number (subject to uniform distribution) as the root equation p*. set up your classes at a3, after learning of the double-digit for a1 and a2, so you get the three equations for example : your 31 classes on the 12th, then your equation is 21x3 60x2 2x a0 = 0 forms. the equation coefficients a0 you get from the root of p* to determine.)
- 2014-04-25 08:18:59下载
- 积分:1
-
snr
自己编的一个计算信噪比的程序,可用于相应模型的功率谱估计(Made themselves a calculated signal-to-noise ratio of the program can be used for the power spectrum of the corresponding model estimates)
- 2012-11-28 19:34:55下载
- 积分:1
-
flat_array_dbf
面阵的幅度相位全控制自适应数字波束形成算法——对角加载 QRD-SMI 算法的研究;两种面阵唯相位(Phase-Only)数字波束形成算法——小相
位扰动约束算法和期望方向增益最大约束算法的研究;面阵的数字多波束形成算法——二维 FFT 多波束的研究,以及 FFT 在可编程逻辑器件中的实现。
(Research of the adaptive digital beamforming algorithm, which
control both amplitude and phase of each array element: diagonal
loading QRD-SMI algorithm.
② Research of two Phase-Only DBF algorithms: small phase
perturbation restriction algorithm and maximum gain of the
expected direction restriction algorithm.
③ Research of multiple beams algorithm for planar array: 2D-FFT
multiple beams. And the realization of FFT with CPLD.
)
- 2016-05-12 22:08:10下载
- 积分:1
-
iHMM
infinite HMM
Refer to Beal s Paper
Applying Gibbs Sampling in inference
the number of states of HMM is changeable in this algorithm, based on Dirichlet Proce(infinite HMMRefer to Beal s PaperApplying Gibbs Sampling in inferencethe number of states of HMM is changeable in this algorithm, based on Dirichlet Proce)
- 2008-01-24 10:10:54下载
- 积分:1
-
miaobiao
GUI实现秒表, ,有开始暂停结束功能(GUI stopwatch)
- 2013-11-26 20:36:52下载
- 积分:1
-
lax
matlab lax格式求解激波管一位欧拉方程(matlab lax format a Euler equation solving shock tube)
- 2013-11-16 14:30:22下载
- 积分:1
-
3000
求解包装动力学在受到脉冲下的冲击谱,来算具体响应规律
(response shock spectrum)
- 2009-06-30 10:37:32下载
- 积分:1
-
PSD_ImprovedCorr
现代信号处理中功率谱估计理论中改进的协方差算法。程序直观明了。(the algorithm in modern signal processing.)
- 2011-12-14 00:21:40下载
- 积分:1