HilbertTransform

Struct HilbertTransform 

Source
pub struct HilbertTransform<T: Float + FromPrimitive> { /* private fields */ }
Expand description

Hilbert Transform processor

Produces a 90-degree phase-shifted version of a signal. Can be used to generate analytic signals.

Implementations§

Source§

impl<T: Float + FromPrimitive> HilbertTransform<T>

Source

pub fn new(fft_size: usize) -> Self

Create a new Hilbert transform processor with the specified FFT size

Source

pub fn transform(&mut self, signal: &[T]) -> Vec<T>

Compute the Hilbert transform of a signal

Returns the 90-degree phase-shifted version of the input signal.

Source

pub fn analytic_signal(&mut self, signal: &[T]) -> Vec<Complex<T>>

Create an analytic signal from the input

Returns a vector of complex numbers where:

  • Real part = original signal
  • Imaginary part = Hilbert transform (90° phase-shifted version)

Auto Trait Implementations§

§

impl<T> Freeze for HilbertTransform<T>

§

impl<T> RefUnwindSafe for HilbertTransform<T>
where T: RefUnwindSafe,

§

impl<T> Send for HilbertTransform<T>
where T: Send,

§

impl<T> Sync for HilbertTransform<T>
where T: Sync,

§

impl<T> Unpin for HilbertTransform<T>
where T: Unpin,

§

impl<T> UnwindSafe for HilbertTransform<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.