pub struct ArraySignalProcessing<State = ArraySignalProcessingUntrained> {
pub n_sources: usize,
pub array_geometry: ArrayGeometry,
pub doa_method: DOAMethod,
pub subspace_dimension: Option<usize>,
pub angular_range: (f64, f64),
pub angular_resolution: f64,
pub correlation_handling: CorrelationHandling,
pub random_state: Option<u64>,
/* private fields */
}Expand description
Array signal processing covariance
Fields§
§n_sources: usizeNumber of sources
array_geometry: ArrayGeometryArray geometry
doa_method: DOAMethodDirection of arrival estimation method
subspace_dimension: Option<usize>Subspace dimension
angular_range: (f64, f64)Angular search range
angular_resolution: f64Angular resolution
correlation_handling: CorrelationHandlingSource correlation handling
random_state: Option<u64>Random state for reproducibility
Trait Implementations§
Source§impl<State: Clone> Clone for ArraySignalProcessing<State>
impl<State: Clone> Clone for ArraySignalProcessing<State>
Source§fn clone(&self) -> ArraySignalProcessing<State>
fn clone(&self) -> ArraySignalProcessing<State>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<State> Freeze for ArraySignalProcessing<State>
impl<State> RefUnwindSafe for ArraySignalProcessing<State>where
State: RefUnwindSafe,
impl<State> Send for ArraySignalProcessing<State>where
State: Send,
impl<State> Sync for ArraySignalProcessing<State>where
State: Sync,
impl<State> Unpin for ArraySignalProcessing<State>where
State: Unpin,
impl<State> UnwindSafe for ArraySignalProcessing<State>where
State: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more