a little self-correction: while the statement above is true, linearity also implies that we can take the weights out of the parentheses on the left hand side:braindoc wrote:Code: Select all
systemOut(weight1*signal1) + systemOut(weight2*signal2) = systemOut(weight1*signal1 + weight2*signal2)
Code: Select all
weight1*systemOut(signal1) + weight2*systemOut(signal2) = systemOut(weight1*signal1 + weight2*signal2)
