Main Content

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

plotes

単入力ニューロンの誤差曲面のプロット

構文

plotes(WV,BV,ES,V)

説明

plotes(WV,BV,ES,V) は、次の引数を取ります。

WV

W の値から成る 1N 列の行ベクトル

BV

B の値から成る 1M 列の行ベクトル

ES

誤差ベクトルから成る MN 列の行列

V

ビュー (既定は [-37.5, 30])

これは、下に等高線が示された誤差曲面をプロットします。

errsurf を使用して誤差曲面 ES を計算します。

単入力ニューロンの誤差曲面のプロット

p = [3 2];
t = [0.4 0.8];
wv = -4:0.4:4;
bv = wv;
ES = errsurf(p,t,wv,bv,'logsig');
plotes(wv,bv,ES,[60 30])

Figure contains 2 axes objects. Axes object 1 with title Error Surface, xlabel Weight W, ylabel Bias B contains 2 objects of type surface. Axes object 2 with title Error Contour, xlabel Weight W, ylabel Bias B contains 2 objects of type surface, contour.

バージョン履歴

R2006a より前に導入

参考