-
Bsp43
Clasification with feature extraction for two classes
- 2009-12-12 19:56:05下载
- 积分:1
-
faraday1
说明: 这个例子显示了如何使用stretchmesh功能
扩大不增加人数的gridpoints在边缘计算窗口的大小。
(This example shows how to use the stretchmesh function to
expand the size of the computation window at the edges without increasing the number of gridpoints. )
- 2011-03-06 16:38:35下载
- 积分:1
-
MTBoost1
Duchi and Singer [24] proposed a boosting method for multi-class classification problems
by utilizing the structural sparsity of model parameters. They claimed that the
method can be generalized for multi-task learning.
- 2014-12-14 19:27:07下载
- 积分:1
-
environmental-sound-classification
environmental sound classification
- 2011-12-10 09:47:26下载
- 积分:1
-
Branch-cut-method-matlab-source-code
枝切法matlab原始代码,内有详细的代码,帮助新手了解相位解缠的算法。(Branch-cut method matlab source code, a detailed code to help the novice to understand the phase unwrapping algorithms.)
- 2020-11-22 16:59:35下载
- 积分:1
-
snake
贪食蛇小游戏的matlab代码,上下左右键控制,下载直接运行即可使用。(Matlab code Snake game, up and down keys to control, you can use downloaded directly run.)
- 2013-07-19 20:08:38下载
- 积分:1
-
Gaexample
遗传算法-优化算法-模板-可以供学习参考(Genetic algorithms- Optimization- Template)
- 2014-01-13 14:38:47下载
- 积分:1
-
SteerableGaussianFilters
Steerable高斯图像滤波器,非常不错
在国外网站上找到的,可以学习
(Steerable Gaussian filter images, very good abroad found on the site, we can learn from)
- 2007-04-11 11:12:34下载
- 积分:1
-
matlab
matlab具体图形教学,以及常用习题答案。详细的设计知识(matlab specific graphic teaching, as well as a common problem sets. Detailed knowledge of the design)
- 2012-06-13 19:54:07下载
- 积分: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