/// Multiply two r-matrices.
///
/// Given:
/// * a first r-matrix
/// * b second r-matrix
///
/// Returned:
/// * atb a * b
///
/// # Note:
/// It is permissible to re-use the same array for any of the
/// arguments.
/// This revision: 2021 May 11