-
dd
说明: 实例讲解最小二乘法汇总及matlab仿真学习实例的源程序(matlab )
- 2012-04-10 00:10:14下载
- 积分:1
-
matlabgzfz
matlab在自动控制原理的的应用,ppt讲解格式,详细,并且配有例题的源代码,面向实际,很适合解决自动控制原理方面的问题(Matlab in control of the application of the principle, ppt format to explain in detail, Examples and equipped with the source code, to face reality, the solution is very suitable for the automatic control theory problems)
- 2006-11-02 08:32:06下载
- 积分:1
-
corner
Detection of corner using harris improve method
- 2013-02-24 18:39:27下载
- 积分:1
-
WoodBerry
wood berry matlab code
- 2013-03-13 21:55:24下载
- 积分:1
-
zishiyNoise2
simulink自适应噪声信号2,Matlab中的s函数(simulink adaptive noise signal 2, Matlab function of s)
- 2014-12-14 16:19:43下载
- 积分:1
-
XY-two-axis-machine-control-program
XY轴联动机床控制程序,通过输入不同的坐标点可以绘制不同的轨迹图形,测试完全正常,有实物图片(To achieve a two-axis CNC machine tools XY movement, there are procedures and physical picture, a test run as usual.)
- 2015-02-26 14:32:43下载
- 积分:1
-
Degree_Distribution
复杂网络中,对度分布特征的程序,源数据是邻接矩阵,运行简单,可得出两张图。(complex network, the degree distribution,and it is good job,you can get two graph)
- 2013-12-16 16:52:57下载
- 积分:1
-
mabs2d_v2.1
Input data is the MS Excel file, where the table of nodes, table of elements, nodal external loads vector and boundary conditions are stored.
After running the mabs2d.m file on the Command Window, the program calculates the stiffness matrix in local coordinates kiL (element i). Once the transformation matrix associated to the element is obtained, the stiffness matrix in global coordinates kiG is also calculated. The table of connectivity is automatically generated for the assembly process and then computes the complete stiffness matrix of the structure.
- 2011-10-08 20:08:49下载
- 积分:1
-
基于观测数据的卡尔曼滤波
利用卡尔曼滤波对观测数据进行优化处理,并在观测数据的基础上对卡尔曼滤波进行改进(The Kalman filter is used to optimize the observed data, and the Kalman filter is improved on the basis of the observed data.)
- 2018-09-03 17:40:30下载
- 积分: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