STFTSpecFrames.empty constructor

STFTSpecFrames.empty(
  1. int bins
)

Returns an empty scalar STFT result with the given bin count.

Implementation

factory STFTSpecFrames.empty(int bins) {
  return STFTSpecFrames._(0, bins, Float32List(0));
}