simetrix.GroupVectorDivision

class simetrix.GroupVectorDivision

Bases: object

Provides access to a single division of a GroupVector.

Methods

Attributes

divisionIndex

Division index.

stringdata

String data.

x

Use to create numPy arrays of x-data.

xcomplex

Complex x-data of division.

xdata

x-data of division.

xreal

Real x-data of division.

y

Use to create numPy arrays of y-data.

ycomplex

Complex y-data of division.

ydata

y-data of division.

yreal

Real y-data of division.

property divisionIndex: int

Division index.

property stringdata: list[str]

String data.

property x: VectorData

Use to create numPy arrays of x-data.

property xcomplex: list[complex]

Complex x-data of division. If data is actually real, will return a complex value with imaginary part zero.

property xdata: list[float] | list[complex]

x-data of division. Returns either real or complex determined at run time.

property xreal: list[float]

Real x-data of division. If data is actually complex, will return the magnitude.

property y: VectorData

Use to create numPy arrays of y-data.

property ycomplex: list[complex]

Complex y-data of division. If data is actually real, will return a complex value with imaginary part zero.

property ydata: list[float] | list[complex]

y-data of division. Returns either real or complex determined at run time.

property yreal: list[float]

Real y-data of division. If data is actually complex, will return the magnitude.