-
Untitled2
多普勒信号模型,多普勒信号快速傅立叶法分析频谱,FFT(Doppler signal model, the fast Fourier analysis of Doppler signal spectrum, the FFT)
- 2012-06-22 11:29:20下载
- 积分:1
-
MSRCRbyZhang
带色彩恢复的多尺度视网膜增强算法(MSRCR)的原理、实现及应用。
(Multi-scale recovery of the retina with color enhancement algorithms (MSRCR) principle, implementation and applications.)
- 2013-12-07 21:26:37下载
- 积分:1
-
57578866ANN
the file represents very good tutorial using matlab in neural network field
- 2013-05-03 13:13:28下载
- 积分:1
-
MediaRecorderStateUnitTestTemplate
A template class for running a method under test in all possible states of a MediaRecorder object.
- 2013-12-06 14:36:59下载
- 积分:1
-
dsp3
功率谱密度估计。welch法功率谱密度估计,协方差法估计,Burg法估计。(psd estimate。welch,covariance,Burg。)
- 2021-04-27 14:38:44下载
- 积分:1
-
Matlab-Optical-Example
介绍关于如何使用Optisystem Matlab Component(Introduce how to use Optisystem Matlab Component)
- 2020-08-23 15:08:17下载
- 积分:1
-
Adq-axisCurrentControltechnique
A dq-axis Current Control Technique for Fast Transient Response in Vector
Controlled Drive of Permanent Magnet Synchronous Moto
- 2011-01-20 01:24:44下载
- 积分:1
-
wavelet
matlab实现软硬阈值函数的图像去噪,附带一张测试图片矩阵lenna.mat(matlab image denoising hard and soft threshold function, with a test image matrix lenna.mat)
- 2013-12-04 15:49:41下载
- 积分:1
-
PRI_transformation
pri变换分选算法仿真实现,改进经典PRI变换算法(PRI transformation algorithm)
- 2021-01-18 22:38:44下载
- 积分:1
-
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