pub trait QR<T> {
// Required methods
fn qr_overwrite<L: Layout, Lq: Layout, Lr: Layout>(
&self,
a: &mut DSlice<T, 2, L>,
q: &mut DSlice<T, 2, Lq>,
r: &mut DSlice<T, 2, Lr>,
);
fn qr<L: Layout>(
&self,
a: &mut DSlice<T, 2, L>,
) -> (DTensor<T, 2>, DTensor<T, 2>);
}Expand description
QR decomposition for orthogonal-triangular factorization
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.