-
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
-
motorcycle_model
MATLAB Simulation文件,摩托车仿真,具体操作步骤见说明文档(MATLAB Simulation file, motorcycle simulation, specific steps see documentation)
- 2013-08-15 17:20:21下载
- 积分:1
-
EMdemo
EM算法在神经网络中的应用,可以用来进行视频数据分类。(In this demo, I use the EM algorithm with a Rauch-Tung-Striebel smoother and an M step, which I ve recently derived, to train a two-layer perceptron, so as to classify medical data (kindly provided by Steve Roberts and Will Penny from EE, Imperial College). The data and simulations are described in: Nando de Freitas, Mahesan Niranjan and Andrew Gee Nonlinear State Space Estimation with Neural Networks and the EM algorithm After downloading the file, type "tar-xf EMdemo.tar" to uncompress it. This creates the directory EMdemo containing the required m files. Go to this directory, load matlab5 and type "EMtremor". The figures will then show you the simulation results, including ROC curves, likelihood plots, decision boundaries with error bars, etc. WARNING: Do make sure that you monitor the log-likelihood and check that it is increasing. Due to numerical errors, it might show glitches for some data sets.)
- 2013-03-11 22:27:18下载
- 积分:1
-
matlab
matlab检测直线交点源程序 matlab检测直线交点源程序(Detection of straight-line intersection matlab source line intersection detection matlab source)
- 2020-11-05 09:59:52下载
- 积分:1
-
yangtiao
本程序是利用matlab编写的样条插值的函数,完成数值计算中的样条插值。(The program is written using matlab spline interpolation function to complete the numerical calculation of the spline interpolation.)
- 2011-08-20 19:08:33下载
- 积分:1
-
Xunijilifa
虚拟激励法在汽车工程中的应用示例,可以求振动的功率谱密度。(THE APPLICATION OF MULTIPLE-POINT PSEUDO EXCITATION METHOD TO TRACKED AMBULANCE VIBRATION-REDUCTION SYSTEM RANDOM VIBRATION ANALYSIS)
- 2014-01-26 19:41:03下载
- 积分:1
-
erweifeixianxing
在程序设计和调试过程中①只要在程序中增加类似m或n的循环语句,便可用神经网对三维或三维以上的非线形函数训练,也可以用在复杂系统二个以上独立变量、任意维非线性动态参数的辨识(In program design and debugging process ① similar increase in the program as long as m or n of the loop, you can use the neural network over a three-dimensional or three-dimensional non-linear function of training, can also be used in a complex system, two or more independent variables, any dimension Parameter identification of nonlinear dynamic)
- 2013-05-25 21:34:32下载
- 积分:1
-
GPSnavigation
获取导航电文,通过卷积地方法,十分有用,希望能够帮助大家!(Access to the navigation message, through the method of convolution and is very useful to help you!)
- 2009-05-02 20:21:27下载
- 积分:1
-
T-est
说明: 分别使用周期图法以及改进的周期法实现谱估计(Using periodogram and improved method to achieve spectrum estimation cycle)
- 2008-11-04 00:10:30下载
- 积分:1
-
kalman
本程序为用matlab对kalman滤波进行目标跟踪的应用仿真的程序代码(The procedures for the use of matlab kalman filter for target tracking application simulation program code)
- 2013-07-20 09:30:11下载
- 积分:1