numpoly.ndpoly.values

property ndpoly.values: numpy.ndarray

Expose the underlying structured array.

Typically used for operator dispatching and not for use to conversion.

Example:
>>> numpoly.variable(1).values
array((1,), dtype=[('<', '<i8')])
>>> numpoly.variable(2).values
array([(1, 0), (0, 1)], dtype=[('<;', '<i8'), (';<', '<i8')])