-
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
-
assignment1
Code to Remove The Time Delay Between Two Audio Channels
- 2011-05-12 21:29:28下载
- 积分:1
-
Data-Fusion
关于数据融合以及卡尔曼滤波器的文章,在测控系统中的应用(Data fusion and Kalman filter )
- 2011-07-05 21:12:13下载
- 积分:1
-
timewait_sock
Wrap-around code for a console using the ARC io-routines.
- 2015-03-18 11:27:58下载
- 积分:1
-
matlab
用matlab仿真实现电力系统静态稳定性分析(Power system simulation using matlab static stability analysis)
- 2015-04-20 09:50:52下载
- 积分:1
-
complex-theory-code-master
说明: Delaunay和受限Delaunay三角网在Java中提供高性能的工具,支持Lidar LAS文件、数字高程模型(DEM)、有限元分析、路径规划和不规则三角网(TIN)的其他应用,为曲面建模提供高性能实用工具。(Delaunay and Constrained Delaunay Triangulations in Java, providing high-performance utilities for modeling surfaces with support for Lidar LAS files, Digital Elevation Models (DEM), finite element analysis, path planning, and other applications of Triangulated Irregular Networks (TIN))
- 2020-12-10 23:39:18下载
- 积分:1
-
matlab
可以实现MATLAB环境中基本界面的制作,在该界面中求得矩形的面积,通过修改其长宽的相应值也可以得到不同的面积,最重要的是有默认选项来恢复到初始的设置值(MATLAB environment can be achieved in the production of the basic interface, and seek a rectangular area in the interface by modifying the length and width of the corresponding values can also get different area, the most important thing is the default option)
- 2015-03-25 22:36:47下载
- 积分:1
-
FuncLrzFit
采用matlab进行洛伦兹拟合的函数,具体拟合采用了最小二乘法。(This matlab function fits lrz, and it is very useful.)
- 2021-03-29 18:19:10下载
- 积分:1
-
IntToString
Returns the JVM class name within the constant pool context of cls class definition.
- 2014-01-17 14:29:41下载
- 积分:1
-
基于内容的图像检索,代码齐全MATLAB
基于内容的图像检索,代码齐全,matlab实现(Content based image retrieval ,Code complete)
- 2018-04-02 15:31:10下载
- 积分:1