aboutsummaryrefslogtreecommitdiff
path: root/qolab
diff options
context:
space:
mode:
authorEugeniy E. Mikhailov <evgmik@gmail.com>2022-06-14 16:07:00 -0400
committerEugeniy E. Mikhailov <evgmik@gmail.com>2022-06-14 16:07:00 -0400
commite107251a43b2a91d7dce7147d8b655eae7c23eb7 (patch)
treef31915b3a2c3ddda342e89731d403ed76754bd2a /qolab
parent7f6b49e81abcbaad2e663e549fbf8e0da68c3749 (diff)
downloadqolab-e107251a43b2a91d7dce7147d8b655eae7c23eb7.tar.gz
qolab-e107251a43b2a91d7dce7147d8b655eae7c23eb7.zip
better doc string for getRawWaveform
Diffstat (limited to 'qolab')
-rw-r--r--qolab/hardware/scope/sds1104x.py8
1 files changed, 4 insertions, 4 deletions
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)