1

I am using radial basic function(rbf) in neural network using "newrb" method in Matlab and all things are good, but i hope to find a way which makes me able to draw the decisions boundary between the two samples that i have. For example in perceptron the decision boundary is a line with equation WX+b=0
W:weights, X:Inputs and b is the bias.How can i draw the complex decision boundary result from rbf?
Thanks. Hani Almousli.....

4

2 回答 2

0

在matlab中有2个代码用于绘制输入与目标和决策边界之间的关系

plotpv(输入,目标)

决策边界的 plotpc(weight,bias)

我希望能有所帮助

于 2014-05-03T12:56:32.037 回答
0

我相信它是... w*phi(x) 用于最简单的单输入、单功能网络

其中.. w=wieght, phi=bias_function, x=input

于 2010-01-04T05:25:34.520 回答