pub struct FirBuilder {}
Expand description

Creates a generic FIR filter.

Uses the futuredsp to pick the optimal FIR implementation for the given constraints.

Note that there must be an implementation of futuredsp::TapsAccessor for the taps object you pass in, see docs for details.

Additionally, there must be an available core (implementation of futuredsp::UnaryKernel) available for the specified SampleType and TapsType. See the futuredsp docs for available implementations.

Inputs

in: Input

Outputs

out: Output

Usage

use futuresdr::blocks::FirBuilder;
use futuresdr::runtime::Flowgraph;
use num_complex::Complex;

let mut fg = Flowgraph::new();

let fir = fg.add_block(FirBuilder::new::<f32, f32, _>([1.0, 2.0, 3.0]));
let fir = fg.add_block(FirBuilder::new::<Complex<f32>, f32, _>(&[1.0, 2.0, 3.0]));
let fir = fg.add_block(FirBuilder::new::<f32, f32, _>(vec![1.0, 2.0, 3.0]));

let fir = fg.add_block(FirBuilder::new_resampling_with_taps::<f32, f32, _>(3, 2, vec![1.0, 2.0, 3.0]));

Implementations

Create a new non-resampling FIR filter with the specified taps.

Create a new rationally resampling FIR filter that changes the sampling rate by a factor interp/decim. The interpolation filter is constructed using default parameters.

Create a new rationally resampling FIR filter that changes the sampling rate by a factor interp/decim and uses taps as the interpolation/decimation filter. The length of taps must be divisible by interp.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more