outLenMode static method
Returns output length for the selected scipy-style outMode.
- CorrOutMode.full:
nx + nh - 1 - CorrOutMode.valid:
max(nx, nh) - min(nx, nh) + 1
Implementation
static int outLenMode(
int nx,
int nh, {
CorrOutMode outMode = CorrOutMode.full,
}) => yl_conv_out_len_mode_ffi(nx, nh, outMode.value);