Daniel@0: Daniel@0:
Daniel@0:Daniel@0: y = glmfwd(net, x) Daniel@0: [y, a] = glmfwd(net, x) Daniel@0:Daniel@0: Daniel@0: Daniel@0:
y = glmfwd(net, x)
takes a generalized linear model
Daniel@0: data structure net
together with
Daniel@0: a matrix x
of input vectors, and forward propagates the inputs
Daniel@0: through the network to generate a matrix y
of output
Daniel@0: vectors. Each row of x
corresponds to one input vector and each
Daniel@0: row of y
corresponds to one output vector.
Daniel@0:
Daniel@0: [y, a] = glmfwd(net, x)
also returns a matrix a
Daniel@0: giving the summed inputs to each output unit, where each row
Daniel@0: corresponds to one pattern.
Daniel@0:
Daniel@0:
glm
, glmpak
, glmunpak
, glmerr
, glmgrad
Copyright (c) Ian T Nabney (1996-9) Daniel@0: Daniel@0: Daniel@0: Daniel@0: