改变图MATLAB的尺寸

时间:2016-06-08 15:22:06

标签: matlab plot neural-network matlab-figure som

我正在尝试可视化SOM神经网络。这有一个plotsom函数。它有效,但它通过一个维度延伸图:

原图: enter image description here

和不同的视图(X-Y; X-Z和Y-Z): enter image description here

我不明白如何让它的轴受到相当均匀的干扰。我的代码: (原A == net.IW{1,1}B = net.layers{1}.distances

A =  

1.0e+04 *

0.1659    0.0736    1.7223
0.1460    0.0772    1.2072
0.1207    0.0747    1.4661
0.1007    0.0783    0.9510
0.1439    0.0895    1.4653
0.1239    0.0930    0.9502
0.0987    0.0905    1.2091
0.0787    0.0941    0.6941

B = 

 0     1     1     2     1     2     2     3
 1     0     1     1     1     1     2     2
 1     1     0     1     1     2     1     2
 2     1     1     0     2     1     1     1
 1     1     1     2     0     1     1     2
 2     1     2     1     1     0     1     1
 2     2     1     1     1     1     0     1
 3     2     2     1     2     1     1     0


plotsom(A,B)

1 个答案:

答案 0 :(得分:4)

该图使用axis equal来确保每个轴上的缩放相同。如果要禁用此功能,可以在绘图后调用axis normal,这将更改每个轴的缩放以最适合数据。

plotsom(A,B);
axis normal

enter image description here