pub trait FillCornersBuilder: Generator<Ix1> {
// Provided method
fn fill_corners<F: Fn(usize, usize) -> [usize; 2]>(
self,
amt: F,
) -> <FillCorners<F> as Modifier<Ix1>>::Output<Self>
where Self: Sized { ... }
}Expand description
Builder trait for the FillCorners modifier.
Provided Methods§
Sourcefn fill_corners<F: Fn(usize, usize) -> [usize; 2]>(
self,
amt: F,
) -> <FillCorners<F> as Modifier<Ix1>>::Output<Self>where
Self: Sized,
fn fill_corners<F: Fn(usize, usize) -> [usize; 2]>(
self,
amt: F,
) -> <FillCorners<F> as Modifier<Ix1>>::Output<Self>where
Self: Sized,
Guarantee that the first amt(count, len)[0] samples and the last amt(count, len)[1] samples are taken.
A small amount of linear backfill (2-4% of the length of the schedule) can improve the quality of a schedule.
L. E. Cullen, A. Marchiori, D. Rovnyak, Magn Reson Chem 2023, 61(6), 337. https://doi.org/10.1002/mrc.5340