BandPower constructor

BandPower(
  1. num delta,
  2. num theta,
  3. num lowAlpha,
  4. num highAlpha,
  5. num lowBeta,
  6. num lowGamma,
  7. num middleGamma,
)

Creates a new instance of BandPower with the given band power values.

  • delta: The delta band power value.
  • theta: The theta band power value.
  • lowAlpha: The low alpha band power value.
  • highAlpha: The high alpha band power value.
  • lowBeta: The low beta band power value.
  • lowGamma: The low gamma band power value.
  • middleGamma: The middle gamma band power value.

Implementation

BandPower(this.delta, this.theta, this.lowAlpha, this.highAlpha, this.lowBeta,
    this.lowGamma, this.middleGamma);