-
1
说明: 一些适合初学者的MATLAB程序代码,以及功能介绍。(Some MATLAB code for beginners, and Function.)
- 2010-09-27 14:40:41下载
- 积分: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
-
模拟退火算法
人工智能模拟退火算法,包含了matlab程序解决优化问题。(Artificial intelligence simulated annealing algorithm includes matlab program to solve optimization problems.)
- 2021-04-28 17:28:43下载
- 积分:1
-
MATLAB-basic
说明: 这是一部matlab的教材,比较基础,适合初学者,不知道有没有人上传,先发一下,如果有劳请版主删掉!(It is a matlab materials, basis of comparison, for beginners, do not know if anyone upload, start that, if there are moderators, please delete labor!)
- 2010-04-20 20:20:29下载
- 积分:1
-
linear-method
数值计算中的拟合方法 MATLAB程序 附带注释 亲测可用(linear method)
- 2014-02-05 18:21:38下载
- 积分:1
-
shumojiaocheng
国际数模竞赛的基础教程,供参加比赛的人学习(The basis of the number of Tutorials modeling contest for those who participate in the competition study)
- 2010-12-29 17:05:47下载
- 积分:1
-
AF-DF-code
AF DF SER MATLAB program simulink
- 2011-06-06 23:06:49下载
- 积分:1
-
prml
机器学习经典书籍,共有14个章节,包括:线性回归模型,神经网络,核方法等内容。(Machine learning classic books, a total of 14 chapters, including: linear regression models, neural networks, kernel methods and so on.)
- 2014-09-12 16:07:52下载
- 积分:1
-
DOA算法1
说明: doa估计的三种方法,包含MUSIC算法,ESPRIT算法,压缩感知的算法。(Three methods of doa estimation)
- 2021-03-24 18:03:00下载
- 积分:1
-
kMeansCluster
基于matlaB工具的一种简单的关于K_means聚类的算法(A simple clustering algorithm on K_means)
- 2011-09-26 17:02:17下载
- 积分:1