From: leila on
this is my activation function that i want to implement with matlab :
F(yi)= 1,Yi= Max{y1,y2,?????.ym}
0,Others
any one can help me
From: Greg Heath on
On Apr 24, 9:37 am, leila <leeeila12...(a)live.fr> wrote:
> this is my activation function that i want to implement with matlab  :
> F(yi)= 1,Yi= Max{y1,y2,?????.ym}
>        0,Others
> any one can help me

doc compet
help compet

However, if it has to be differentiable for training you are stuck
with

doc logsig
help logsig

for training and validation.

Then use compet for final testing and operation.

Hope this helps.