-
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
-
ls_mmse_updated
channel estimation using Ls and MMSE algorithms also calculates the Mean square error and SER
- 2009-05-04 18:49:52下载
- 积分:1
-
mEngine
mEngine是连接Mathematica 和MATLAB的程序. 可以实现Mathematica 和MATLAB的互相调用。( mEngine provides the facility to share data between Mathematica and MATLAB.
All functions are wrappers to those provided by the MATLAB Engine Library.
MATLAB should be installed first.)
- 2011-01-28 19:26:22下载
- 积分:1
-
dmusic
基于music的自适应滤波器matlab的应用仿真(Based on the music of the adaptive filter matlab application simulation)
- 2012-09-24 16:36:57下载
- 积分:1
-
readsegyfile
将地震勘探工程中的标准格式segy文件中的数据读入到matlab的变量中,方便自己编程序处理数据。(The seismic data in a standard format segy project file is read into matlab variables, and to facilitate their programmed to process the data.)
- 2014-12-17 08:18:55下载
- 积分:1
-
Navier-Stokes
Navier Stokes solver
- 2015-03-16 12:16:43下载
- 积分:1
-
regulateur
regulator matlab simulation
PID control is ubiquitous. While simple in theory, design and implementation of PID controllers can be difficult and time consuming in practice.
PID control involves several tasks that include:
- 2015-03-26 19:48:50下载
- 积分:1
-
colorspace
color space conversions , contains demo and test
- 2009-12-12 15:39:11下载
- 积分:1
-
avg_sum
求x的平均值,但对其中的一列或几列数据进行求和。(Calculate arithmetic means of matrix x,but calculate the sum of one or some columns. )
- 2012-03-28 09:32:30下载
- 积分:1
-
yantuo
HILBERT-HUANG TANSFORM中进行EDM时端点延拓(SYSTEMS-CSF TANSFORM EDM conducted at the endpoint Extension)
- 2007-04-30 21:42:02下载
- 积分:1