Struct idsp::Dsm

source ·
pub struct Dsm<const K: usize> { /* private fields */ }
Expand description

Delta-sigma modulator

  • MASH-(1)^K architecture
  • 0 <= K <= 8 (K=0 is valid but the output will be the constant quantized 0)
  • The output range is 1 - (1 << K - 1)..=(1 << K - 1).
  • Given constant input x0, the average output is x0/(1 << 32).
  • The noise goes up as K * 20 dB/decade.
let mut d = Dsm::<3>::default();
let x = 0x87654321;
let n = 1 << 20;
let y = (0..n).map(|_| d.update(x) as f32).sum::<f32>() / n as f32;
let m = x as f32 / (1u64 << 32) as f32;
assert!((y / m - 1.0).abs() < (1.0 / n as f32).sqrt(), "{y} != {m}");

Implementations§

source§

impl<const K: usize> Dsm<K>

source

pub fn update(&mut self, x: u32) -> i8

Ingest input sample, emit new output.

§Arguments
  • x: New input sample
§Returns

New output

Trait Implementations§

source§

impl<const K: usize> Clone for Dsm<K>

source§

fn clone(&self) -> Dsm<K>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const K: usize> Debug for Dsm<K>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const K: usize> Default for Dsm<K>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<const K: usize> PartialEq for Dsm<K>

source§

fn eq(&self, other: &Dsm<K>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const K: usize> PartialOrd for Dsm<K>

source§

fn partial_cmp(&self, other: &Dsm<K>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<const K: usize> Copy for Dsm<K>

source§

impl<const K: usize> Eq for Dsm<K>

source§

impl<const K: usize> StructuralPartialEq for Dsm<K>

Auto Trait Implementations§

§

impl<const K: usize> RefUnwindSafe for Dsm<K>

§

impl<const K: usize> Send for Dsm<K>

§

impl<const K: usize> Sync for Dsm<K>

§

impl<const K: usize> Unpin for Dsm<K>

§

impl<const K: usize> UnwindSafe for Dsm<K>

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>,

§

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>,

§

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.