相关文章推荐
打篮球的海豚  ·  DataGridView ...·  2 月前    · 
买醉的香蕉  ·  Android中Surface+MediaP ...·  11 月前    · 
重情义的甘蔗  ·  如何让apscheduler ...·  11 月前    · 
本文介绍了Matlab中mapminmax函数在神经网络工具箱中的应用,特别是关注apply和reverse两个选项的使用细节。通过探讨该函数与其他相关函数如fixunknowns、mapstd、processpca的配合,揭示了在数据标准化过程中的关键注意事项。 摘要由CSDN通过智能技术生成

这个函数主要是出现在神经网络工具箱中,其相应的函数还有fixunknowns、mapstd、processpca等函数。在该函数的说明文档中,有这么一段话

Before training, it is often useful to scale the inputs and targets so that they always fall within a specified range. The function mapminmax scales inputs and targets so that they fall in the range [–1,1]. The following code illustrates how to use this function.
[pn,ps] = mapminmax(p);
[tn,ts] = mapminmax(t);
net = train(net,pn,tn);
The original network inputs and targets are given in the matrices p and t. The normalized inputs and targets pn and tn that are returned will all fall in the interval [–1,1]. The structures ps and ts contain the settings, in this case the minimum and maximum values of the original inputs and targets. After the network has been trained, th
毕设 使用 的函数,记录一下方便回忆 map min max函数 矩阵 每一行处理至区间[-1,1]内, 将 矩阵 行的最小值和最大值映射为[-1 1]。 help map min max map min max Map matrix row min imum and max imum values to [-1 1]. map min max processes input and target data by map pin...
1.[Y,PS] = map min max (X,Y MIN ,Y MAX ) 其 ,Y MIN 是我们期望归一化后 矩阵 Y每行的最小值,Y MAX 是我们期望归一化后 矩阵 Y每行的最大值。 例1:待处理 矩阵 X=[4 5 6;7 8 9]我们期望归一化后每行的最小值为0,最大值为1.程序如下 扩展:(修改参数) 1. [Y,PS] = map min max (X,Y MIN ,Y MAX ) 将 矩阵 的每一行压缩到 [Y MIN ,Y MAX ],其 当前行的最大值变为Y MAX ,最小值变为Y MIN 。 2.[Y,P... [Y,PS] = map min max (X,FP) Y = map min max (‘apply’,X,PS) X = map min max (‘reverse’,Y,PS) 用实例来讲解,测试数据 x1 = [1 2 4], x2 = [5 2 3]; [y,ps] = map min max (x1) y = -1....
[Y,PS] = map min max (X,Y MIN ,Y MAX ) map min max 的数学公式为y = (y max -y min )*(x-x min )/(x max -x min ) + y min 标准化 矩阵 Y及映射PS Y min 和Y max 是期望的每一行的最小值与最大值 参考博客: https://blog.csdn.net/hqh45/article/details/42965481
归一化化就是要把你需要处理的数据经过处理后(通过某种算法)限制在你需要的一定范围内。首先归一化是为了后面数据处理的方便,其次是保证程序运行时收敛加快。 map min max函数 这个函数可以把 矩阵 的每一行归一到[-1 1]. [y1,PS] = map min max (x1). 其 x1 是需要归一的 矩阵 y1是结果。 函数接口: [Y,PS] = map min max (X) [Y,PS] = map mi...
imtool(I_g,[]) % 使用 laplacian进行图像锐化,该过程 产生 负值 ,因此需要 使用 double类型 w = fspecial('laplacian',0); I_g_d ...