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

Design a linear layer

Syntax

net = newlind(P,T)

new = newlind

Description

newlind(P,T) takes two input arguments,

and returns a linear layer designed to output T (with minimum sum square error) given input P.

Call newlind without input arguments to define the network's attributes in a dialog window.

Examples

We would like a linear layer that outputs T given P for the following definitions.

Here we use newlind to design such a network and check its response.

Algorithm

newlind calculates weight W and bias B values for a linear layer from inputs P and targets T by solving this linear equation in the least squares sense:

See Also

sim, newlin



[ Previous | Help Desk | Next ]