-
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
-
km_demo
k均值是想过程,开发工具是MATLAB。详细实现了k均值算法(k-means is to want to process,the development is matlab)
- 2012-06-25 20:31:14下载
- 积分:1
-
IIR
IIR滤波器设计,用matlab语言设计一个矩形二维IIR低通数字滤波器程序(IIR filter design with matlab language to design a rectangular two-dimensional low-pass digital IIR filter program
)
- 2011-11-11 20:05:45下载
- 积分:1
-
PMSM_SMO
Permanent Mangnet Synchronous Motor using sliding model observer.......using SIMULINK
- 2010-11-28 23:47:27下载
- 积分:1
-
turbobianma
一个turbo码的仿真程序,输入Eb/N0值,随着传输帧的增加,误码率增加,得到400帧的误码率。(a turbo code simulation program, the value of imported Eb, with the transmission of the frame, BER increasing, and the 400 bit error rate.)
- 2006-11-10 21:24:04下载
- 积分:1
-
ML_POA
装个matlab运行ML_POA即可。
可修改其中NumDiv和LoopTimes两个变量的值来提高精度,但要注意计算两随着等分数增加成几何增长。(Matlab )
- 2010-12-01 16:58:38下载
- 积分:1
-
APF_ip_iq
这是一个基于瞬时无功功率理论的有源电力滤波器,是在matlab的simulink中搭建而成(This is an active power filter based on instantaneous reactive power theory, the structure which is in the simulink matlab)
- 2012-03-29 08:18:11下载
- 积分:1
-
GX
说明: 用割线法求函数极值,能求出初始点附近极值点,包括极大值和极小值(Secant extremal function, can be obtained in the vicinity of the initial point of extreme points, including the maximum and minimum values)
- 2013-04-09 09:44:12下载
- 积分:1
-
3
说明: 本程序实现多模态故障检测与故障诊断,用的方法是LPP_GMM_FJ,对象为CSTH,GMM是用的FJ算法,效果很好(This procedure realize multimodal, fault detection and fault diagnosis method is LPP_GMM_FJ, object for CSTH, GMM FJ algorithm is used, the effect is very good)
- 2013-08-31 15:48:58下载
- 积分:1
-
muatual_information_BSS
根据盲源分离(BSS)中的最小互信息法编的程序(According to Blind Source Separation (BSS) in the minimum mutual information compiled program)
- 2011-10-21 11:03:26下载
- 积分:1