VarList#

class brainpy.math.VarList(seq=())[source]#

A sequence of Variable, which is compatible with vars() operation in a BrainPyObject.

Actually, VarList is a python list.

VarList is specifically designed to store Variable instances.

append(element)[source]#

Append object to the end of the list.

Return type:

VarList

extend(iterable)[source]#

Extend list by appending elements from the iterable.

Return type:

VarList