-
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
-
matlab-source-code-2660
matlab程序设计教程源代码,很不错的,都是代码。是学习MATLAB,提高都受能力的参考资料(MATLAB codes)
- 2009-11-12 16:31:52下载
- 积分:1
-
dace_kriging
DACE- A MATLAB Kriging Toolbox Version 2.0, August 1, 2002. (Sø ren N. Lophaven, Hans Bruun Nielsen, Jacob Sø ndergaard)
- The software package DACE
(Design and Analysis of Computer Experiments), which is a Matlab toolbox for
working with kriging approximations to computer models.
The typical use of this software is to construct a kriging approximation model based
on data from a computer experiment, and to use this approximation model as a
surrogate for the computer model.
- 2011-05-18 20:54:57下载
- 积分:1
-
tphfidcdcc_MatlabSimulink
Three phase high frequency isolated DC-DC converter (published in ELSEVIER)is simulated under symmetrical open loop control. It provides Low voltage conversion ratio, isolation, good regulation with fast dynamic response.
- 2013-07-26 15:51:24下载
- 积分:1
-
article-2190_2
Algorithms for Digital Image Steganography
via Statistical Restoration
- 2014-01-24 15:18:01下载
- 积分:1
-
msk
msk一种恒包络信号,本源码用多种方案实现MSK信号的调制和解调(msk a constant envelope signal, the source with a variety of programs to achieve the modulation and demodulation of MSK)
- 2010-12-04 13:53:11下载
- 积分:1
-
CBIR
用matlab实现的基于颜色特征的图像检索系统。(Using matlab to achieve the color-based Image Retrieval System.)
- 2009-05-07 14:42:38下载
- 积分:1
-
work_0702281019_01
MATLAB source code:
This function implements the *(int*)(&float_var).(MATLAB source code : This function implements the* (int*) ()
- 2007-02-28 10:19:45下载
- 积分:1
-
art
art CT成像追踪法源码 matlab实现(art CT)
- 2013-11-26 11:12:19下载
- 积分:1
-
wavetrap
用matlab语言实现陷波器,达到消除指定频率的谐波的功能(Language with matlab notch filter, to eliminate the function of the specified frequency harmonics)
- 2011-01-04 10:31:57下载
- 积分:1