-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
191bc44
commit 2c100e6
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Digital filter tools | ||
This library includes tools for deriving the taps of the OPX digital filters (IIR and FIR). | ||
|
||
## calc_filter_taps | ||
some explanation | ||
|
||
### Usage examples | ||
|
||
#### | ||
```python | ||
from qualang_tools.loops import from_array | ||
|
||
``` | ||
|
||
## exponential_correction | ||
some explanation | ||
|
||
### Usage examples | ||
|
||
#### | ||
```python | ||
from qualang_tools.loops import from_array | ||
|
||
``` | ||
|
||
## highpass_correction | ||
some explanation | ||
|
||
### Usage examples | ||
|
||
#### | ||
```python | ||
from qualang_tools.loops import from_array | ||
|
||
``` | ||
|
||
## bounce_and_delay_correction | ||
|
||
some explanation | ||
|
||
### Usage examples | ||
|
||
#### | ||
```python | ||
from qualang_tools.loops import from_array | ||
|
||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from qualang_tools.digital_filters.filters import ( | ||
calc_filter_taps, | ||
exponential_correction, | ||
highpass_correction, | ||
bounce_and_delay_correction, | ||
) | ||
|
||
__all__ = [ | ||
"calc_filter_taps", | ||
"exponential_correction", | ||
"highpass_correction", | ||
"bounce_and_delay_correction", | ||
] |
File renamed without changes.