SetType¶
- class vallenae.io.SetType(*values)[source]¶
Record types of the pridb.
- __init__()¶
Methods
Returns self, the complex conjugate of any int.
Number of bits necessary to represent self in binary.
Number of ones in the binary representation of the absolute value of self.
to_bytes([length, byteorder, signed])Return an array of bytes representing an integer.
from_bytes(bytes[, byteorder, signed])Return the integer represented by the given array of bytes.
Return a pair of integers, whose ratio is equal to the original int.
Returns True.
__init__()Attributes
the real part of a complex number
the imaginary part of a complex number
the numerator of a rational number in lowest terms
the denominator of a rational number in lowest terms
None
Parametric record
Hit record
Status record
Label marker
Datetime marker, inserted by the acquisition software whenever recording is started
Section marker, e.g. if acquisition settings changed.
- NONE = 0¶
None
- PARAMETRIC = 1¶
Parametric record
- HIT = 2¶
Hit record
- STATUS = 3¶
Status record
- LABEL = 4¶
Label marker
- DATETIME = 5¶
Datetime marker, inserted by the acquisition software whenever recording is started
- SECTION = 6¶
Section marker, e.g. if acquisition settings changed
- conjugate()¶
Returns self, the complex conjugate of any int.
- bit_length()¶
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()¶
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- as_integer_ratio()¶
Return a pair of integers, whose ratio is equal to the original int.
The ratio is in lowest terms and has a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- is_integer()¶
Returns True. Exists for duck type compatibility with float.is_integer.
- real¶
the real part of a complex number
- imag¶
the imaginary part of a complex number
- numerator¶
the numerator of a rational number in lowest terms
- denominator¶
the denominator of a rational number in lowest terms