SignalList#
- class SignalList(signal_list)[source]#
Bases:
SignalCollection
A list of signals with functionality for simultaneous evaluation.
The passed list is stored in the
components
attribute.Initialize by storing list of signals.
- Parameters:
signal_list (
List
[Signal
]) – List of signals.
Methods
- complex_value(t)[source]#
Vectorized evaluation of complex value of components.
- Return type:
Union
[array
,Array
]
- conjugate()#
Return the conjugation of this collection.
- Return type:
SignalCollection
Attributes
- components#
The list of components.
- drift#
Return the drift
Array
, i.e. return anArray
whose entries are the sum of the constant parts of the corresponding component of thisSignalList
.