Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## [X.X.X] - XXXX-XX-XX

- Added traces' names and paths on the toolbar.
- Revamped the filter feature.

## [1.0.0] - 2025-10-15

Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ npyz = "0.8.3"
ndarray = "0.16.1"
fixed = "1.29.0"
clap = { version = "4.5.46", features = ["derive", "wrap_help"] }
biquad = "0.5.0"
serde = "1.0.228"
sci-rs = "0.4.1"
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,7 @@ Multiple traces can be opened in horizontal split-screen, with their views optio
turboplot waveform1.npy waveform2.npy
```

Traces can be filtered with basic filters when they are loaded. Low-pass, high-pass, band-pass and notch filters are possible. This requires specifying the sampling rate (in MHz) and the cuttof frequency (in KHz).

```
cargo run --release -- -s 100 --filter low-pass --cutoff-freq 1000 waveform.npy
```
Traces can be filtered at any time using an interactive filter designer. Click the "Filter" button in the toolbar to create and apply low-pass, high-pass, band-pass, or band-stop filters. You can adjust the filter type, cutoff frequencies, and order. The sampling rate (in MS/s) must be specified (with `-s` parameter or directly from the GUI) so frequency cutoffs are meaningful. Applied filters can be cleared with a single click to instantly return to the original trace.

By default TurboPlot will spawn 1 GPU rendering thread and the maximum CPU rendering threads the hardware can run simultaneously. To fit your needs, this can be changed by specifying the number of threads for each type of rendering backend:

Expand Down
Loading