outLenFor method

int outLenFor(
  1. int nx,
  2. int nh
)

Returns the output length for an input of size nx and kernel size nh.

Implementation

int outLenFor(int nx, int nh) => Conv.outLen(nx, nh);