TRRecord¶ class waveline.datatypes.TRRecord(channel, trai, time, samples, data, raw=False)[source]¶ Transient data record. __init__(channel, trai, time, samples, data, raw=False)¶ Methods __init__(channel, trai, time, samples, data) Attributes raw ADC values instead of user values (volts) channel Channel number trai Transient recorder index (key between AERecord and TRRecord) time Time in seconds (since start_acq command) samples Number of samples data Array of transient data in volts (or ADC values if raw is True) channel: int¶ Channel number trai: int¶ Transient recorder index (key between AERecord and TRRecord) time: float¶ Time in seconds (since start_acq command) samples: int¶ Number of samples data: ndarray¶ Array of transient data in volts (or ADC values if raw is True) raw: bool = False¶ ADC values instead of user values (volts)