-
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源代码-matlabwatermarking
一组视频水印的Matlab源代码,在Matlab可直接运行。有很强的参考价值。(a group of video watermarking Matlab source code in Matlab can be directly run. A strong reference value.)
- 2005-03-16 12:58:11下载
- 积分:1
-
sparse_decon
稀疏脉冲反褶积程序,提高地震资料分辨力的有力工具!!(Sparse pulse deconvolution program, is a powerful tool to improve the resolution of seismic data!!!!!)
- 2014-09-14 18:31:37下载
- 积分:1
-
GA_f6
Genetic Algorithm for optimization
- 2012-10-05 15:36:30下载
- 积分:1
-
PAPR
simulation scripts for PAPR reduction
- 2011-10-23 05:41:10下载
- 积分:1
-
Laguerre
Laguerre自适应滤波器源代码(Laguerre adaptive filter source code)
- 2009-03-31 17:08:02下载
- 积分:1
-
detectionAIC
水下多目标检测算法(AIC)——matlab程序
detection_AIC.rar (2 K) 很简单的一个算法程序,初学者进来看看。(Underwater multi-target detection algorithm (AIC)- matlab program detection_AIC.rar (2 K) of an algorithm is very simple procedure, come take a look at beginners.)
- 2009-05-12 16:29:08下载
- 积分:1
-
EMDs
emd源程序的工具包,只要编写主程序调用即可,非常经典(emd source toolkit, just write the main program calls can be very classic)
- 2014-12-02 19:44:19下载
- 积分:1
-
VQSOM
利用SOM神经网络设计矢量量化的码书,结果优于传统的LBG方法,失真度较小。(SOM neural network design use vector quantization codebook, the result is better than traditional methods LBG, distortion is small.)
- 2014-01-30 17:55:03下载
- 积分:1
-
MATLAB
数字图像处理MATLAB版(冈萨雷斯).pdf(Digital Image Processing MATLAB version (Gonzalez). Pdf)
- 2011-02-11 15:24:47下载
- 积分:1