-
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
-
Fuzzy_Windup
Fuzzy reset Anti_windup of PID controler simulation
- 2010-12-31 11:58:23下载
- 积分:1
-
delaury
是在MATLAB中很简单的绘制平面三角形的程序源代码,简洁,易懂。(MATLAB is a very simple drawing plane triangle of the source code, simple, easy to understand.)
- 2011-09-19 10:46:23下载
- 积分:1
-
ovtoolbox
The Engineering Vibration Toolbox is a set of educational programs
written in Octave by Joseph C. Slater. Also included are a number of help files,
demonstration examples, and data files containing raw experimental data. The
codes include single degree of freedom response, response spectrum, finite
elements, numerical integration, and phase plane analysis.
(The Toolbox is a set of educational programs written in programs by Jo seph C. Slater. Also included are a number of HE p files, demonstration examples. and data files containing raw experimental dat a. The codes include single degree of freedom're sponse, response spectrum, finite elements, numerical integration. and phase plane analysis.)
- 2007-05-26 22:34:30下载
- 积分:1
-
PSK
仿真psk信道的一篇,PDF格式,内有源代码,完美运行,不信可以试试哦(A channel simulation psk, PDF format, the source code, the perfect run, do not believe you can try oh)
- 2011-06-01 13:26:03下载
- 积分:1
-
city-develop
matlab 城市发展模拟,地理系统建模的小程序(matlab city develop)
- 2014-08-10 23:36:47下载
- 积分:1
-
PLS_Toolbox_3
偏最小二乘法工具包,美国著名的eigenvector公司出品。版本3.0.免安装。(PLS_toolbox produced by eigenvector. version 3.0)
- 2021-04-26 15:48:45下载
- 积分:1
-
reglm
应用于数据处理,针对离散数据进行多元线性回归。(Used in data processing, multiple linear regression for discrete data.)
- 2012-10-14 12:55:19下载
- 积分:1
-
yhart__fbstroct
混合编程时,M文件中调用C语言函数,精通matlab编程一书的例程(Mixed programming, C language function calls a M file, proficient in matlab programming routines)
- 2017-08-13 17:46:40下载
- 积分:1
-
C4_5
C4.5决策树matlab程序,本人找了很久才找到,绝对能用(C4.5 Decision Tree code)
- 2009-12-16 15:30:47下载
- 积分:1