-
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
-
sanfenzhierzaosheng
连续相位调制(CPM),维特比译码,整个调制解调系统(Continuous phase modulation (CPM), Viterbi decoding, the modem system)
- 2013-04-03 14:17:56下载
- 积分:1
-
Part4
基础且有用的的matlab技巧及其源代码文件(matlab source file)
- 2012-10-08 10:39:30下载
- 积分:1
-
SPRcoffier.m
一种基于SPR光谱分析的液体折射率的计算,结果正确,可以使用。(SPR spectroscopy based on the calculation of the refractive index of liquid, the result is correct, can be used.)
- 2021-04-27 20:48:44下载
- 积分:1
-
reed_solomon_code
reed solomon code polynominal generation
- 2013-12-23 00:41:10下载
- 积分:1
-
Matlab_Scientific_Scilab_Mathematics
INTRODUCCIÓ N AL USO DE MATLAB
SCIENTIFIC WORK PLACE, MATHEMATICS Y SCILAB
- 2010-09-19 12:53:56下载
- 积分:1
-
prob_check
假设检验演示程序
单侧假设检验
书上的源代码 希望对其他人有用(Sided hypothesis test hypothesis testing demo program source code book useful for hope to others)
- 2010-10-26 17:36:45下载
- 积分:1
-
Kmeans
kmeans 实现2维情形的聚类,自己编写的一个matlab实现(kmeans
)
- 2010-11-21 16:02:49下载
- 积分:1
-
Electric-Wheelchair-Demo
An electric wheelchair uses a motor with a torque constant of 1.1 Nm/A, powered from a 24 V
battery, with an internal resistance of 0.25Ω. We are interested in designing a controller with 44
Nm continuous torque capability, both in driving and braking modes at all speeds, with the
widest possible operating speed range, both forward and reverse direction using the given
battery.
- 2012-06-25 20:38:58下载
- 积分:1
-
target_core_configfs
This file contains ConfigFS logic for the Generic Target Engine project.
- 2015-03-15 12:57:10下载
- 积分:1