Function tensorflow::ops::tridiagonal_mat_mul
source · pub fn tridiagonal_mat_mul<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
superdiag: O0,
maindiag: O1,
subdiag: O2,
rhs: O3,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for TridiagonalMatMul::new().build(superdiag, maindiag, subdiag, rhs, scope)
.