-
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
-
enlarge
对二维图片进行中心放大,能控制放大的倍数,采用最近邻法(enlarge pictures from the center of it,can control the index for enlargement)
- 2014-01-07 11:26:28下载
- 积分:1
-
aefu_v1_0.tar
MIT 的 meep MIT 的 meepMIT 的 meepMIT 的 meep(meep code form MIT meep code form MITmeep code form MIT)
- 2016-11-15 14:02:57下载
- 积分:1
-
LDA
LDA是一种常见的降维算法,这个算法是完整的算法,可以正常运行(LDA is a common method of Dimension reduction)
- 2015-04-02 15:57:59下载
- 积分:1
-
DSS_CDMA_PTIT
Simulation a DSS CDMA system
- 2016-10-06 23:46:34下载
- 积分:1
-
code1
盲信号分离中的自然梯度算法,效果比较好!是最基本的用来进行盲信号分离的算法(Blind signal separation in the natural gradient algorithm, results were quite good! Is used for the most basic algorithm for Blind Signal Separation)
- 2010-12-01 22:16:59下载
- 积分:1
-
convertTDMS_v9
将.tdms文件直接导入matlab,以方便读取和处理。
第9个版本,测试没有问题(Function to load LabView TDMS data file(s) into variables in the MATLAB workspace.)
- 2013-04-22 14:35:54下载
- 积分:1
-
sim
实现对自适应波束形成SIM算法的仿真,在该程序中,我们先设置入射的信号,再进行互协方差矩阵和自协方差矩阵的求解来实现该算法(To achieve adaptive beamforming algorithm for the simulation of SIM, in the process, we first set up the incident signal and then cross-covariance matrix and covariance matrix from the solution to the realization of the algorithm)
- 2009-05-16 19:26:38下载
- 积分:1
-
MATLAB_SYJC
说明: matlab教程,里面有许多有用的方法.(matlab tutorial, there are many useful ways.)
- 2008-11-27 16:14:59下载
- 积分:1
-
MATLAB_Arithmetic
书名:[MATLAB语言常用算法程序集].(龚纯).清晰版
内容:插值,函数逼近,特征值计算,数值微分,数值积分,方程求根,非线性方程组求解,线性方程组的直接法,线性方程组的的迭代法,随机数生成,特殊函数计算,常微分方程的初值问题,偏微分方程的数值解法,数据统计和分析。(Title: [MATLAB algorithms commonly used in assembly language]. (Gong pure). Clearer view of the contents: interpolation, function approximation, eigenvalue calculation, numerical differentiation, numerical integration, finding roots of equations, nonlinear equations, linear equations group, direct, linear equations of the iterative method, random number generation, calculation of special functions, initial value problems for ordinary differential equations, numerical solution of partial differential equations, statistics and analysis.)
- 2011-04-21 12:07:00下载
- 积分:1