-
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
-
24515
说明: 共轭梯度酸的具体介绍,非常有的东西,希望大家可以学的到这些(Acid conjugate gradient specific description, is there something I hope we can learn these)
- 2010-04-02 10:58:42下载
- 积分:1
-
eigen
D:matlab
mmeigen.rar特征值(D : Matlab nmm eigen.rar eigenvalue)
- 2006-09-06 19:02:31下载
- 积分:1
-
250KV-line
250KV line simulation program
- 2015-03-07 03:09:05下载
- 积分:1
-
oev
《人工神经网络导论》课程中的实验,实现奇偶校验的Matlab程序(BP算法)( Introduction to Artificial Neural Networks course of the experiment, to achieve parity of the Matlab program (BP algorithm))
- 2007-12-04 15:08:14下载
- 积分:1
-
Classification-MatLab-Toolbox
数据挖掘中用于分类的算法的MATLAB源程序代码。(Data mining algorithms for classification MATLAB source code.)
- 2010-11-23 15:27:06下载
- 积分:1
-
TrackingDifferentiator.m
跟踪微分器,用于自抗扰控制的过度安排作用,学习自抗扰可参考学习,谢谢(Track Differentiator)
- 2013-09-20 23:05:21下载
- 积分:1
-
sanweipinpu3
说明: 用于处理机械动力学响应的三维频谱图matlab程序(Matlab program for the processing of mechanical response to the three-dimensional spectrum)
- 2019-03-11 16:43:18下载
- 积分:1
-
jpeg_matlab
jpeg 压缩matlab源代码,适合matlab和图像处理初学者(jpeg compression matlab source code, suitable for beginners and image processing matlab)
- 2007-11-22 12:42:58下载
- 积分:1
-
PredictiveControl
predictive control example matlab
- 2011-07-02 03:31:02下载
- 积分:1