-
Adaboost
一个实现Adaboost训练和分类的matlab程序,带数据(Adaboost training and classification procedures, with data)
- 2013-08-19 17:15:35下载
- 积分:1
-
minPF
外点罚函数法,用于求解非线性优化问题,适用于matlb程序(Outside the penalty function method for solving nonlinear optimization problems for matlb program)
- 2013-09-25 08:55:09下载
- 积分:1
-
CHAP9_3
二质量伺服系统的Simulink仿真程序(Quality servo system in Simulink simulation program)
- 2013-04-19 16:24:51下载
- 积分:1
-
read_grib
matlab 读取气象上的grib资料,包括插件和作为例子的程序(matlab read the grib weather information, including plug-ins and the program as an example)
- 2010-10-28 16:08:52下载
- 积分:1
-
yzc1
SVPWM Control AC motors
- 2011-11-01 21:35:17下载
- 积分:1
-
Puma560_15
Puma560_15 robot manupulator
- 2016-10-11 01:58:06下载
- 积分:1
-
formal_context
使用matlab利用一定的约简方法实现形式背景的约简和概念格的还原。(Using matlab Reduction Method using certain forms of background reduction and the reduction of concept lattices.)
- 2020-12-31 16:38:59下载
- 积分:1
-
GMSK-Modem
GMSK信号调制和解调的仿真代码,包含一比特差分、2比特差分、鉴频等常用GMSK解调方案。(Modem matlab file for GMSK modulation and demodulation. The demodulation methods including one-bit differential and two-bit differentian decoding and frequency discrimination.)
- 2015-03-04 16:24:18下载
- 积分:1
-
SVM
SVM的SMO算法实现,svm_train为训练函数,svm_predict为预测函数,按说明输入参数即可(The SMO SVM algorithm, svm_train of the training function, svm_predict to predict function, follow the instructions to input parameters)
- 2014-05-07 09:38:10下载
- 积分: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