Skip to content

Commit 612563f

Browse files
authored
Merge pull request #2 from qosst/hotfix-1
fix(dsp): 🐛 Fixed wrong size in special DSP
2 parents 48a327f + 13ca8c4 commit 612563f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "qosst-bob"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Bob submodule of QOSST, containing modules for Bob client, the GUI, the DSP of Bob and parameters estimation."
55
authors = [
66
"Yoann Piétri <Yoann.Pietri@lip6.fr>",

qosst_bob/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
QOSST module for Bob.
1919
"""
20-
__version__ = "0.10.0"
20+
__version__ = "0.10.1"

qosst_bob/dsp/dsp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ def _special_dsp_params(
13671367
-1j
13681368
* 2
13691369
* np.pi
1370-
* np.arange(len(elec_noise_data))
1370+
* np.arange(len(elec_shot_noise_data))
13711371
* frequency_shift
13721372
/ adc_rate
13731373
)

0 commit comments

Comments
 (0)