-
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
-
PidControlMatlabSimulation
先进pid控制的matlab仿真程序,全书共分11章,包括连续和离散系统的pid控制,常用数字pid控制,等等,内容全面丰富,适合从事生产过程自动化,计算机应用的工程技术人员和研究生阅读。(Advanced pid control matlab simulation program, the book is divided into 11 chapters, including continuous and discrete-time systems pid control, commonly used digital pid control, and so on, comprehensive and rich, suitable for the production process automation, computer application of engineering and technical staff and graduate students to read .)
- 2007-11-27 09:23:44下载
- 积分:1
-
kuopintongxinxitongfangzhen
模拟整个扩频系统,为学习和设计有关扩频系统提供帮助,里面有信号的发生和接受端信号的捕获,文件夹里面的m文件可直接在matlab上实现(Simulate the spread spectrum system for the study and design of spread spectrum systems to help, there are signal generation and signal capture the receiving end, inside the folder in the matlab m files can be directly implemented on)
- 2011-05-12 16:02:04下载
- 积分:1
-
MATLAB
BWT Project. Cochlear Implants
- 2014-10-08 09:53:24下载
- 积分:1
-
E_erlang
im doing so much huhu
- 2015-04-09 20:58:18下载
- 积分:1
-
imm
有关交互多模型matlab实现算法,仿真场景可以自己设计(Related to interactive multi-model algorithm matlab, simulation scenarios can be designed)
- 2008-05-02 08:24:11下载
- 积分:1
-
Two_Point_Correlation
两点相关函数的程序,可用于流体力学的相关性分析及天文学的关联函数(Program two-point correlation function, correlation function can be used for correlation analysis of fluid mechanics and astronomy)
- 2021-04-29 11:38:43下载
- 积分:1
-
greymodel
说明: 灰色预测模型的matlab代码,大家可以根据自己的需要修改(Gray prediction model matlab code, you can modify according to their own needs)
- 2009-08-21 23:03:42下载
- 积分:1
-
FASTICA
快速定点独立分量分析在盲源分离中的应用 FASTICA(FASTICA PCA BSS)
- 2012-01-09 14:25:33下载
- 积分:1
-
x1x5
基于状态空间的预测控制算法,可通过运行算法生成mpc预测控制器进行仿真(Predictive control algorithm based on State space can be generated by running the algorithm for simulation of MPC controller)
- 2016-01-07 22:42:46下载
- 积分:1