-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more documentation to signal module
- Loading branch information
1 parent
d9d5a7a
commit ba2c1b8
Showing
4 changed files
with
29 additions
and
15 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
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
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 |
---|---|---|
@@ -1,23 +1,32 @@ | ||
/// Digital Filtering | ||
/// Digital Filtering | ||
/// Contains functions from [Filtering section of | ||
/// `scipy.signal`](https://docs.scipy.org/doc/scipy/reference/signal.html#filtering). | ||
pub mod filter; | ||
|
||
/// Signal Generation | ||
/// Signal Generation | ||
/// Contains functions from the [Waveforms section of | ||
/// `scipy.signal`](<https://docs.scipy.org/doc/scipy/reference/signal.html#waveforms>). | ||
pub mod wave; | ||
|
||
/// Convolution | ||
/// Convolution | ||
/// Contains functions from the [Convolution section of | ||
/// `scipy.signal`](<https://docs.scipy.org/doc/scipy/reference/signal.html#convolution>). | ||
#[cfg(feature = "std")] | ||
pub mod convolve; | ||
|
||
/// Window functions | ||
/// This contains all window functions in the | ||
/// [scipy.signal.windows](https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows) | ||
/// [`scipy.signal.windows`](https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows) | ||
/// namespace. | ||
/// The convenience function | ||
/// [`get_windows`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.get_window.html#scipy.signal.get_window) | ||
/// in the [scipy.signal](https://docs.scipy.org/doc/scipy/reference/signal.html#window-functions) | ||
/// namespace is located here. | ||
pub mod windows; | ||
|
||
/// Signal Resampling | ||
/// Signal Resampling | ||
/// This contains only the | ||
/// [`resample`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.resample.html#scipy.signal.resample) | ||
/// function from `scipy.signal`. | ||
#[cfg(feature = "std")] | ||
pub mod resample; |
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