outLenMode static method

int outLenMode(
  1. int nx,
  2. int nh, {
  3. CorrOutMode outMode = CorrOutMode.full,
})

Returns output length for the selected scipy-style outMode.

Implementation

static int outLenMode(
  int nx,
  int nh, {
  CorrOutMode outMode = CorrOutMode.full,
}) => yl_conv_out_len_mode_ffi(nx, nh, outMode.value);