pingspice.circuit.wrappers.Array(Wrapper)
class documentation
Part of pingspice.circuit.wrappers
(View In Hierarchy)
Construct me with some parameter name and some values of that parameter (either as a single second arg containing a sequence, or multiple additional args) like this:
arrayWrapper = Array('x_array', values)
Passing that to a Netlist
object will result in this:
x_array=[<values>]
where <values> is a text listing of the values in the sequence, separated by spaces.
If the name is None
or a blank string, returns just the
array part, "[<values>]".
Method | __call__ | Undocumented |
Inherited from Wrapper:
Method | __init__ | Undocumented |
Method | __iter__ | You can iterate me over my arguments. |
Method | __str__ | Undocumented |
Method | argsToString | Undocumented |
Method | kwToString | Undocumented |