Skip to content

Commit

Permalink
Folder + init + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoLaudatQM committed Mar 19, 2024
1 parent 191bc44 commit 2c100e6
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
47 changes: 47 additions & 0 deletions qualang_tools/digital_filters/README.md
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

```
13 changes: 13 additions & 0 deletions qualang_tools/digital_filters/__init__.py
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.

0 comments on commit 2c100e6

Please sign in to comment.