-
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
-
TOOLBOX_calib
相机标定的工具箱,对于研究标定的人很有帮助,相当好用,欢迎下载。(Camera Calibration Toolbox for calibration studies were very helpful, very easy to use, please download.)
- 2009-06-12 18:35:34下载
- 积分:1
-
union2snrsinr
将一个整数转换成二维数组,数组每行的次序依次为1,2,3……(Convert an integer into two-dimensional array of each line in the order followed by 1,2,3 ......)
- 2013-09-11 09:56:45下载
- 积分:1
-
parag
H=CIRCLE(CENTER,RADIUS,NOP,STYLE)
This routine draws a circle with center defined as
a vector CENTER, radius as a scaler RADIS. NOP is
the number of points on the circle. As to STYLE,
use it the same way as you use the rountine PLOT.
Since the handle of the object is returned, you
use routine SET to get the best result.
- 2009-05-09 14:53:00下载
- 积分:1
-
MATLAB132
这是运用MATLAB进行编程的一些应用,可供大家学习一下(This the use of MATLAB programming some applications are available for learning about )
- 2007-06-24 20:09:58下载
- 积分:1
-
2D_MUR
的二维时域有限差分法仿
作者:厄恩斯特汉堡,十月1999。
cem833课程,大学的图片。( 2D FDTD simulater
Author: Ernst Burger, October 1999.
CEM833 course, Univ. Stellenbosch.)
- 2012-06-18 12:32:44下载
- 积分:1
-
chengfa
本matlab程序用惩罚函数法求解多元模型的最小值(给出初始点和精度要求条件)。(The matlab program for solving the minimum multivariate model with penalty function method (given initial point and precision conditions).)
- 2014-01-16 17:10:25下载
- 积分:1
-
sahngchuan
说明: 数值计算方法中的matlab程序,Jacobi法,Newton插值法,QR分解,数值积分法,重特征值(Matlab program, Jacobi method, Newton interpolation method, QR decomposition, numerical integration method, multiple eigenvalues in numerical calculation method)
- 2020-05-23 19:47:38下载
- 积分:1
-
20100528KFDA
完整的核主元分析法程序,包含训练识别功能,希望有所帮助。(Complete nuclear principal component analysis procedures, including training in recognition, hope that helps)
- 2010-05-27 14:46:49下载
- 积分:1
-
Timer
Arduino平台上的计时器,主要用于定时中断的库文件,能够有效解决Arduino没有定时中断的问题(Arduino timer library platform, mainly for the timer interrupt, can effectively solve the problem of Arduino no timer interrupt)
- 2015-03-23 23:40:10下载
- 积分:1