pub fn conjugate_gradient<T: Float + StableComputation>(
a: &ArrayView2<'_, T>,
b: &ArrayView1<'_, T>,
x0: Option<&ArrayView1<'_, T>>,
config: &IterativeConfig<T>,
) -> CoreResult<IterativeResult<T>>
Expand description
Conjugate gradient method with preconditioning