wan
wan

Reputation: 141

Transfer function in nprtool

may I know what is the transfer function used by MATLAB nprtool? Thank you and your help is greatly appreciated.

Upvotes: 1

Views: 947

Answers (2)

rationalloony
rationalloony

Reputation: 85

It's tan-sigmoid by default. More info here.

Upvotes: 1

Alex L.
Alex L.

Reputation: 21

If you have already created your neural network you can see which function is being used in any layer by typing this command in the console:

mynet.layers{i}.transferFcn

...where 'mynet' is your net name and 'i' is an integer number pointing to a layer. This works for any standard multilayer architecture.

Upvotes: 1

Related Questions