-
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
-
norm2huff
实现哈弗曼压缩编码的matlab程序。(m文件)(Huffman code)
- 2009-07-02 10:16:41下载
- 积分:1
-
PSO
粒子群优化算法,matlab环境实现,用于函数的优化(Particle Swarm Optimization)
- 2020-11-21 00:29:38下载
- 积分:1
-
可以识别英文字母用MatLAB打开即可
说明: 可以识别电子文档,图片和手写的英文字母,用MatLAB打开即可(It can recognize electronic documents, pictures and handwritten English letters. It can be opened with MatLAB.)
- 2020-07-04 16:00:02下载
- 积分:1
-
randomnum
一个关于随机数产生的matlab仿真源码程序。(A random number generated on the source code matlab simulation program.)
- 2010-10-24 10:07:21下载
- 积分:1
-
Brownian_motion_process
数值模拟Brownian Process的一个简单的程序,上传给大家分享(Numerical simulation of Brownian Process)
- 2010-01-22 11:49:59下载
- 积分:1
-
Cjulei
利用模糊c—均值聚类方法将data 数据向量;3表示分成三类;center表示分类中心(Using fuzzy c-means clustering method to the data vector data 3 that is divided into three categories center said the classification center)
- 2010-01-22 19:06:32下载
- 积分:1
-
return_fitted_best_Gaussian
输入一个样本序列
输出一个最佳高斯拟合的mu和sigma(input:samples
output:best fit Guass)
- 2011-12-29 16:57:01下载
- 积分:1
-
linear-quantization-in-pcm
linear quantization in pulse code modulation
- 2013-12-04 19:53:03下载
- 积分:1
-
matlab
Matlab中从文件夹中批量读取文件的做法,程序后有详细说明,简单易学!(Matlab, read from a folder in the batch file approach, procedures are detailed, easy to learn!)
- 2011-01-22 15:15:19下载
- 积分:1