pub fn batch_matrix_solve_ls<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
    matrix: O0,
    rhs: O1,
    l2_regularizer: O2,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for BatchMatrixSolveLs::new().build(matrix, rhs, l2_regularizer, scope).