pingspice.circuit.wrappers.Paren(Wrapper)
class documentation
Part of pingspice.circuit.wrappers
(View In Hierarchy)
Construct me with some function and the arguments for that function, like this:
pwlWrapper = Paren('PWL', 0, 0, 100E-6, '{Vi}')
Passing that to a Netlist
object will result in this:
PWL(0 0 1E-4 {Vi})
Using None
as the function will give you just the
parentheses, like this:
Paren(None, 2, 3)
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 |