Is there any MATLAB transfer(activation) function which its threshold could be set in desired value? (which mean we could for example set its threshold to a
value, so if sum of weighted inputs was greater than a
, neuron will fire and in other cases, don't fire).
I've searched and finds things like: hardlim(N,FP)
and satlin(N,FP)
but threshold is not custom. Also using of bias is not much useful because each neuron in every layer, has different threshold.
Thanks.