-
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
-
EZW
mbedded Zerotrees of Wavelet transforms (EZW) is a lossy image compression algorithm. At low bit rates, i.e. high compression ratios, most of the coefficients produced by a subband transform (such as the wavelet transform) will be zero, or very close to zero. This occurs because "real world" images tend to contain mostly low frequency information (highly correlated). The locations where high frequency information does occur (such as edges in the image) this is particularly important in terms of human perception of the image quality, and thus must be represented accurately in any high quality coding scheme.
- 2014-02-18 20:06:01下载
- 积分:1
-
SignalsPandPSystemsPusingPMATLAB
matlab 信号处理教材,涵盖了信号处理中需要用到的算法的matlab实现,帮助读者能够了解算法实现过程(MATLAB signal processing tutorial, covering the signal processing need to use the algorithm to achieve the MATLAB, help readers to understand the algorithm implementation process)
- 2012-08-27 20:30:22下载
- 积分:1
-
1111
关于TD-SCDMA的程序,用matlab实现的,可直接运行仿真(Program on TD-SCDMA, with the matlab implementation, the simulation can be run directly)
- 2011-11-16 22:02:04下载
- 积分:1
-
nlsd
应用分布傅里叶分析法解广义非线性薛定谔方程(Applying SSFM to solve generalized schodinger equation)
- 2012-11-24 07:10:27下载
- 积分:1
-
dipole
gain of center-fed linear dipole of length L
- 2010-12-01 23:16:50下载
- 积分:1
-
edge_detect
This Matlab code was developed for skin pixel detection in general imagery.
Non-parametric histogram-based models were trained using manually annotated
skin and non-skin pixels. A total of 14,985,845 skin pixels and 304,844,751
non-skin pixels were used.
- 2012-03-21 09:56:26下载
- 积分:1
-
BOOST-MPPT
一种基于Boost电路的光伏最大功率跟踪方法,内部详细介绍了BOOST电路的原理及其在光伏发电中实现MPPT跟踪,值得学习。(Boost circuit-based photovoltaic maximum power point tracking method, the internal details of the BOOST circuit theory and its application in photovoltaic MPPT tracking is implemented, it is worth learning.)
- 2013-09-18 11:15:57下载
- 积分:1
-
MATLAB
系统详细的介绍了matlab软件在各个领域中的应用以及其在科学计算语言中的应用(System is described in detail matlab software applications in various fields as well as their application in scientific computing language)
- 2013-10-25 09:29:02下载
- 积分:1
-
siftDemoV4
通过sift算子,实现两幅图像的快速、精准匹配,效果较好(Sift operator, two images fast, accurate matching, better)
- 2013-04-17 21:17:36下载
- 积分:1