diff --git a/psyneulink/components/functions/function.py b/psyneulink/components/functions/function.py index b5a54436280..a95b4898495 100644 --- a/psyneulink/components/functions/function.py +++ b/psyneulink/components/functions/function.py @@ -9042,7 +9042,11 @@ def function(self, context=None): """Calculate a matrix of weight changes from a 1d array of activity values using Hebbian learning function. - Weight change matrix = *learning_rate* :math:`* w_{ij}x_ix_j` + The weight change matrix is calculated as: + + *learning_rate* * :math:`a_ia_j` if `i \\neq j`, else `0` + + where :math:`a_i` and :math:`a_j` are elements of `variable `. Arguments ---------