FLeftMatrix.zero constructor

FLeftMatrix.zero(
  1. int nColumns,
  2. int nRows
)

Implementation

FLeftMatrix.zero(this.nColumns, this.nRows)
    : rowsData =
          List.generate(nRows, (i) => Float32x4List((nColumns + 3) ~/ 4));