-
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
-
Minimum-path
数学建模中用来解决最小路径的问题的matlab程序(Mathematical modeling is used to solve the problem of the minimum path matlab program)
- 2014-01-23 20:48:50下载
- 积分:1
-
MTETRIS
Matlab版俄罗斯方块,个人一直认为,这个游戏或者说这个程序很经典!
如果你能掌握这个程序,你对Matlab的外功已经不成问题,回家修炼一下内功,就能毕业了!!
不说别的,先来玩玩,别忘了把音箱打开!感受儿时的乐趣
程序作者:Pascal Getreuer
(Matlab version of Tetris, individuals have always thought that this game or that the program was classic! If you can master this program, you have no problem Matlab' s external work, home practice about internal strength, we can graduate! ! If nothing else, the first to play, do not forget to turn on speakers! Experience the fun process of childhood: Pascal Getreuer)
- 2010-10-09 19:48:20下载
- 积分:1
-
fft
快速傅立叶变换的matlab算法实现。(是一个按照时间抽取的基-2快速傅里(基-2 FFT-DIT)。输入倒位序,输出自然顺序。(Fast Fourier Transform algorithm matlab. (Which is a time of extraction in accordance with the base-2 Fast Fu-ri (base-2 FFT-DIT). Enter the inversion sequence, the output of natural order.)
- 2009-11-07 18:38:14下载
- 积分:1
-
Csiggnalproceo
通信信号处理丛书,全面系统地阐述了信号处理的的基本理论与应用,是每个通信人的必备参考资料。
(Communication Signal Processing Series, a comprehensive and systematic exposition of the basic signal processing theory and applications, is an essential reference for each communication.)
- 2012-06-13 14:20:34下载
- 积分:1
-
Embedding-and-extracting
embedding and extraction by DCT
- 2013-10-03 02:45:30下载
- 积分:1
-
percep3
创建一个感知器网络,看前面的网络训练结果图形(Create a sensor network, network training to see the results of the previous graph)
- 2011-11-16 11:26:14下载
- 积分:1
-
Chasing_Method
采用追赶法求解线性方程组。数值计算》典型算例中调试通过。(Using the catch method for solving linear equations. Numerical " Typical examples of the debugging.)
- 2015-01-03 23:07:09下载
- 积分:1
-
fsReliefF
著名的ReliefF特征过滤算法源代码,可用于模式识别(The famous ReliefF feature filtering algorithm source code, can be used for pattern recognition)
- 2015-01-23 15:31:15下载
- 积分:1
-
半监督分类算法
半监督学习(Semi-Supervised Learning,SSL)是模式识别和机器学习领域研究的重点问题,是监督学习与无监督学习相结合的一种学习方法。半监督学习使用大量的未标记数据,以及同时使用标记数据,来进行模式识别工作。当使用半监督学习时,将会要求尽量少的人员来从事工作,同时,又能够带来比较高的准确性,因此,半监督学习目前正越来越受到人们的重视。(Semi-Supervised Learning (SSL) is a key issue in the field of pattern recognition and machine learning. It is a learning method combining supervised learning with unsupervised learning. Semi-supervised learning uses a large number of unlabeled data, as well as labeled data, for pattern recognition. When using semi-supervised learning, it will require as few people as possible to work, and at the same time, it can bring relatively high accuracy. Therefore, semi-supervised learning is receiving more and more attention.)
- 2021-04-12 11:28:57下载
- 积分:1