lcapy.schematic

This module performs schematic drawing using circuitikz from a netlist:

>>> from lcapy import Schematic
>>> sch = Schematic('''
... P1 1 0.1; down
... R1 3 1; right
... L1 2 3; right
... C1 3 0; down
... P2 2 0.2; down
... W 0 0.1; right
... W 0.2 0.2; right''')
>>> sch.draw()

Copyright 2014–2025 Michael Hayes, UCECE

Functions

display_matplotlib(filename[, dpi, scale])

png_image_size(filename)

test()

Classes

Schematic([filename, allow_anon])

SchematicOpts()