STFTFrames.empty constructor

STFTFrames.empty(
  1. int bins
)

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

Implementation

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