pub struct WirtingerConfig {
pub power_iters: usize,
pub max_iter: usize,
pub step_size: f64,
}Expand description
Configuration for Wirtinger Flow recovery.
Fields§
§power_iters: usizeNumber of power-iteration steps for spectral initialisation (default 50).
max_iter: usizeNumber of gradient-descent iterations (default 400).
step_size: f64Base step size (scaled internally by 1/λ²) (default 0.2).
Trait Implementations§
Source§impl Clone for WirtingerConfig
impl Clone for WirtingerConfig
Source§fn clone(&self) -> WirtingerConfig
fn clone(&self) -> WirtingerConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WirtingerConfig
impl Debug for WirtingerConfig
Auto Trait Implementations§
impl Freeze for WirtingerConfig
impl RefUnwindSafe for WirtingerConfig
impl Send for WirtingerConfig
impl Sync for WirtingerConfig
impl Unpin for WirtingerConfig
impl UnsafeUnpin for WirtingerConfig
impl UnwindSafe for WirtingerConfig
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