-
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
-
How-to-draw-circle-in-Matlab
在MATLAB并无直接指令可进行画圆,本程序是一个不错的画圆程序。(in MATLAB no direct instructions can be Circle, the procedure is a good Circle procedures.)
- 2007-04-01 09:46:42下载
- 积分:1
-
zuixiaoercheng
对实验数据利用最小二乘算法拟合,可以自行替换实验数据(Least-squares algorithm for fitting the experimental data, you can replace on their own experimental data)
- 2011-08-26 14:21:43下载
- 积分:1
-
scd
逐步共线性诊断在成分分析方法降维精确性中的应用(Gradually the collinearity diagnosis analysis method application of reduced- dimension accuracy in composition
)
- 2013-09-20 17:02:57下载
- 积分:1
-
simplex
simplex 矩阵,由 Hadamard 矩阵转化而来,可用于脉冲编码技术,另附序列相关函数程序
(simplex matrix, the Hadamard matrix transformed from pulse coding techniques can be used, attached serial correlation function of the program)
- 2014-01-01 16:56:35下载
- 积分:1
-
fmguiv2
fmguiv2图像跟踪,可稳定跟踪目标,用于MATLAB仿真(fmguiv2 image tracking, target tracking can be stable for the MATLAB simulation)
- 2009-03-09 19:07:22下载
- 积分:1
-
RANSAC4Dummies
说明: 适合初学者ransac算法的基本原理,较为详细全面的介绍了ransac算法(Ransac algorithm suitable for beginners the basic principles of a more detailed and comprehensive introduction to the ransac algorithm)
- 2011-03-14 15:17:32下载
- 积分:1
-
matlab
通过使用matlab进行模拟仿真,得到比较可靠的模拟数据与实验进行对比,方便日后类似的数据处理(Obtain reliable simulation data and experimental comparison, to facilitate future similar data processing by using matlab simulation)
- 2012-10-16 09:53:24下载
- 积分:1
-
ldpc_matlab
LDPC码的性能,包括利用各种方法寻找好的节点次数分布、构造性能优异的非规则码、快速译码算法的研究、分析不同结构下DLPC码的码重分布,计算性能界和码率界,分析码结构中的周期与性能的关系
(LDPC encoding and decoding in the standard of DVB一52.
)
- 2011-12-04 13:51:59下载
- 积分:1
-
Genetic_Algorithm
matlab遗传算法工具箱 进化计算 遗传算法
基于遗传算法搜索的最优化方法(matlab genetic algorithm toolbox evolutionary computation genetic algorithm based on genetic algorithm optimization method)
- 2010-09-29 12:07:07下载
- 积分:1