-
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
-
Matlabsignalprocessing_0
这是一本非常好的书,对于学习matlab非常有用处,(用超星阅读器打开)(This is a very good book for learning matlab very useful, (with Chaoxing Reader to open))
- 2008-05-07 20:19:40下载
- 积分:1
-
potential.m
potential field method
- 2009-06-09 13:26:29下载
- 积分:1
-
dimension_full
matlab mfile for chaos
- 2012-06-14 16:30:14下载
- 积分:1
-
mod
该MATLAB仿真程序适用于蓄电池的充电以及放电控制(The MATLAB simulation program is suitable for battery charging and discharge control.)
- 2018-04-19 15:58:36下载
- 积分:1
-
几个连续混沌方程
lorenz方程,超混沌方程,chen算法,chua算法(Lorenz equation, hyper chaotic equation, Chen algorithm, Chua algorithm)
- 2017-10-31 10:29:58下载
- 积分:1
-
我课设编写的路径规划算法
已经调试成功.内含m文件,可直接运行,实现了对10个数字音的识别,电力系统暂态稳定程序,可以进行暂态稳定计算,微分方程组数值解方法,添加噪声处理,LZ复杂度反映的是一个时间序列中。
- 2022-07-25 12:41:27下载
- 积分:1
-
matlab学习教程
内容很基本,我也是转载的
对新手很有帮助,英文的,但是能听懂...
matlab学习教程
内容很基本,我也是转载的
对新手很有帮助,英文的,但是能听懂-matlab tutorial learning content is very basic, I am also reproduced very helpful for novice English, but can understand
- 2023-04-26 00:05:04下载
- 积分:1
-
linetr-double-invented-pendument
对直线二级摆系统利用滑膜变结构理论进行控制研究,在MATLAB环境下进行仿真试验,仿真曲线达到了理想效果。(right straight two pendulum system using synovial variable structure control theory, MATLAB environment for simulation, simulation curves achieved the desired effect.)
- 2007-05-22 13:42:23下载
- 积分:1
-
TurboCodes_OFLYNN
提供了Turbo编译码的Tutorial,以及完整的matlab源代码。(Available PowerPoint presentation walks through how turbo codes work, and then goes onto using the included MATLAB files. Includes Links to useful resources, some available for free online, some you may already have access to through your institution. )
- 2012-02-03 17:51:34下载
- 积分:1