-
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
-
create_COE_file_from_vector
Create COE for Xilinx FPGA
- 2014-01-21 22:35:24下载
- 积分:1
-
Staggered-grid-finite-difference
很简单的交错网格有限差分正演程序,程序通俗易懂,非常适合初学者学习(Staggered grid finite difference)
- 2021-04-08 16:39:00下载
- 积分:1
-
fkfilter
fk滤波一些相关matlab子程序和交互模块程序(fk filtering routines and a number of related interactive module program)
- 2015-09-29 11:16:06下载
- 积分:1
-
alphabet-recpgnition
用matlab 编写的英文字母识别的程序,附带样本和测试库,可以运行(alphabet recognition high performance)
- 2013-12-14 15:31:09下载
- 积分:1
-
strech
去斜率(strech)参考信号与回波信号混频后得到中频输出信号S(t)=Aexp(j*2*pi*f0*t+phase)
其中f0与回波延时的关系为:
f0=k*delay_t
K为线性调频斜率,delay_t为回波延时
将s(t)采样,FFT变换即可得到目标距离与频谱的关系。
Strech 信号测距
输入混频后的中频信号(图一),经采样及FFT变换得到频谱(图二)
再根据频谱与距离的关系式R=Tcf/2B显示出距离(图三)
(Go slope (strech) obtained after the reference signal and the echo signal mixer IF output signal S (t) = Aexp (j* 2* pi* f0* t+phase) f0 and echo delay relationship: f0 = k* delay_t K chirp slope, delay_t the echo delay sampling s (t), the FFT transform to the target distance spectrum of relations. Strech signal ranging input mixer IF signal (Figure 1), sampling and FFT transform spectrum (Figure 2) according the the spectrum distance relationship R = Tcf/2B shows the distance (Figure 3))
- 2012-11-27 20:36:34下载
- 积分:1
-
rcwa
关于严格耦合波发分析光栅等的相关matlab仿真(About rigorous coupled-wave analysis of hair and other related grating matlab simulation)
- 2021-04-01 20:59:07下载
- 积分:1
-
m_5fr4p4
常用的MATLAB图像压缩编码,通过matlab实现,其中包含了DM编码、变换编码(FFT和DCT)、算术编码、行程编码、JZOTch编码、线性预测编码和一个近似的NHzjZsp编码过程。本人通过MATLAB编码效率很高。
(Commonly used MATLAB image compression coding, through matlab implementation, which includes the DM coding, transform coding (FFT and DCT), arithmetic coding, run length coding, JZOTch coding, linear predictive coding and an approximate NHzjZsp encoding process. I have a high coding efficiency by MATLAB.
)
- 2016-01-10 10:22:17下载
- 积分:1
-
doubleLLC
说明: 用MATLAB中的simulink搭建的基于LLC谐振的双向DCDC平台,采用PID控制环控制输出电压,波形较好。(MATLAB simulink built based on LLC resonant two-way DCDC platform, PID control loop control output voltage, waveform is good.)
- 2020-11-27 16:59:30下载
- 积分:1
-
huiseyuce
里面有灰色预测模型的matlab程序,只需输入数据即可,调试成功,可运行。(There are gray prediction model matlab program, you can simply enter the data, debugging success, can be run.)
- 2013-08-27 21:45:05下载
- 积分:1