From e107251a43b2a91d7dce7147d8b655eae7c23eb7 Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Tue, 14 Jun 2022 16:07:00 -0400 Subject: better doc string for getRawWaveform --- qolab/hardware/scope/sds1104x.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qolab/hardware/scope') diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py index fa0519e..6f12042 100644 --- a/qolab/hardware/scope/sds1104x.py +++ b/qolab/hardware/scope/sds1104x.py @@ -68,10 +68,10 @@ class SDS1104X(ScopeSCPI): def getRawWaveform(self, chNum, availableNpnts=None, maxRequiredPoints=None, decimate=True): """ - If decimate is used, we get all available points and then low-pass filter them. - The result is less noisy. But transfer time from the instrument is longer. - If decimate=False we might see aliasing, if there is a high frequency noise - and sparsing > 1 + If decimate=True is used, we get all available points and then low-pass filter them. + The result is less noisy. But transfer time from the instrument is longer. + If decimate=False, then it we are skipping points to get needed number + but we might see aliasing, if there is a high frequency noise and sparsing > 1 """ (sparsing, Npnts, availableNpnts, maxRequiredPoints) = self.calcSparsingAndNumPoints(availableNpnts, maxRequiredPoints) -- cgit v1.2.3