Neural Network Toolbox
  Go to function:
    Search    Help Desk 
radbas    Examples   See Also

Radial basis transfer function

Syntax

Description

radbas is a transfer function. Transfer functions calculate a layer's output from its net input.

radbas(N) takes one input,

and returns each element of N passed through a radial basis function.

radbas(code) returns useful information for each code string:

Examples

Here we create a plot of the radbas transfer function.

Network Use

You can create a standard network that uses radbas by calling newpnn or newgrnn.

To change a network so that a layer uses radbas, set net.layers{i}.transferFcn to 'radbas'.

In either case, call sim to simulate the network with radbas. See newpnn or newgrnn for simulation examples.

Algorithm

radbas(N) calculates its output with according to:

See Also



[ Previous | Help Desk | Next ]