From 9cb36844d95f6016cf457edd605bdbeaa9bd275f Mon Sep 17 00:00:00 2001 From: Antoine Minard Date: Tue, 17 Dec 2024 12:09:44 +0100 Subject: [PATCH] Added internal references to properties --- src/ansys/sound/core/signal_processing/filter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ansys/sound/core/signal_processing/filter.py b/src/ansys/sound/core/signal_processing/filter.py index 96695217e..1bf0250ae 100644 --- a/src/ansys/sound/core/signal_processing/filter.py +++ b/src/ansys/sound/core/signal_processing/filter.py @@ -42,15 +42,15 @@ class Filter(SignalProcessingParent): This class allows designing, loading, and applying a digital filter to a signal. The filter coefficients can be provided directly, or computed from a specific frequency response function (FRF). In this latter case, the filter is designed as a minimum-phase FIR filter, and the - filter denominator is set to 1 as a consequence. + filter denominator (:attr:`a_coefficients`) is set to 1 as a consequence. .. note:: Whether they are derived from the provided FRF or specified directly, the filter coefficients are linked to the sampling frequency value that is given in the argument ``sampling_frequency`` of the ``Filter`` class. As a consequence, the signal to filter - ``signal`` must have the same sampling frequency. If necessary, use the :class:`.Resample` - class to resample the signal prior to using the ``Filter`` class. + :attr:`signal` must have the same sampling frequency. If necessary, use the + :class:`.Resample` class to resample the signal prior to using the ``Filter`` class. """ def __init__(