October 2017
Beginner to intermediate
270 pages
7h
English
Let's take a look at the following code snippet to understand the linear transfer function:
class Linear(TransferFunction):
def getTransferFunction(x):
return x
def getTransferFunctionDerivative(x):
return np.ones(len(x))
graphTransferFunction(Linear)
Let's take a look at the following graph:

Read now
Unlock full access