pub fn matmul(
A: &ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>,
B: &ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>,
) -> Result<ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>, LinalgError>Expand description
Compute matrix multiplication: C = A * B using the default backend