-
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
-
neural_indirect_grad
This program implements the indirect neural controller
for the surge tank example
- 2012-01-14 02:55:19下载
- 积分:1
-
The-Hilbert-transform
MATLAB希尔伯特Hilbert变换求包络谱 源程序代码(MATLAB Hilbert spectral envelope of the Hilbert transform)
- 2014-06-28 12:11:45下载
- 积分:1
-
r_egykq2
使用GUI实现的串口编程例子,MATLAB调试环境下的多路串口数据实时绘图显示,具有良好的界面,使用了gpFzXf协议和 gpFzXf协议进行传输。
(GUI programming examples use the serial implementation, multi-channel serial data in real-time graphics display MATLAB debugging environment, has a good interface, use the gpFzXf and gpFzXf protocol for transmission protocol.
)
- 2016-01-11 22:00:38下载
- 积分:1
-
code
说明: 认知无线电频谱感知循环检测法MATLAB程序(CR Spectrum sensing Cycle Detection MATLAB code)
- 2010-04-08 23:49:49下载
- 积分:1
-
eliminate
时域处理算法,本源码是关于时域预处理放面的内容,包含简易的算法(Time domain processing algorithms, the source is placed on the surface pretreatment time-domain content, including a simple algorithm)
- 2010-05-31 11:08:29下载
- 积分:1
-
Butterworth_LPF
Matlab入门级图像处理程序:利用巴特沃斯(Butterworth)低通滤波器对受噪声干扰的图像进行平滑处理(Matlab entry-level image processing procedures : use Butterworth (Butterworth) low-pass filter to noise interference by the image smoothing)
- 2007-04-10 11:09:06下载
- 积分:1
-
MICROSTRIP_ant
microstrip antenna design
- 2014-08-27 17:55:59下载
- 积分:1
-
AnalysisKSVDbox
K-SVD可以看做K-means的一种泛化形式,K-means算法总每个信号量只能用一个原子来近似表示,而K-SVD中每个信号是用多个原子的线性组合来表示的。
K-SVD通过构建字典来对数据进行稀疏表示,经常用于图像压缩、编码、分类等应用。(K-SVD can be regarded as a generalized form of K-means. The total K-means algorithm can only approximate one signal for each semaphore, and each signal in K-SVD is a linear combination of multiple atoms To express.
K-SVD through the construction of the dictionary to sparse data representation, often used for image compression, encoding, classification and other applications.)
- 2018-01-05 15:48:25下载
- 积分:1
-
神经网络回归拟合预测
说明: 程序-神经网络的回归拟合——基于近红外光谱的汽油辛烷值预测(Program-Neural Network Regression Fitting-Prediction of Gasoline Octane Number Based on Near Infrared Spectroscopy)
- 2020-06-18 02:40:02下载
- 积分:1