Main Content

このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。

plotsompos

自己組織化マップ重み位置のプロット

構文

plotsompos(net)
plotsompos(net,inputs)

説明

plotsompos(net) は、入力ベクトルを緑の点としてプロットします。また、各ニューロンの重みベクトルをブルーグレーの点で示し、接続されている近傍ニューロンを赤のラインで示すことにより、SOM が入力空間をどのように分類するかを示します。

plotsompos(net,inputs) は、入力データを重みに沿ってプロットします。

SOM 重み位置のプロット

x = iris_dataset;
net = selforgmap([10 10]);
net = train(net,x);

Figure Neural Network Training (29-Aug-2023 21:11:34) contains an object of type uigridlayout.

plotsompos(net,x)

Figure SOM Weight Positions (plotsompos) contains an axes object. The axes object with title SOM Weight Positions, xlabel Weight 1, ylabel Weight 2 contains 3 objects of type line. One or more of the lines displays its values using only markers

バージョン履歴

R2008a で導入