tanhInverse property Null safety

NormalOperation tanhInverse
final

Implementation

static final NormalOperation tanhInverse = NormalOperation.floatOnly(
    floatCalc: (Model m) {
      m.resultXF = Real.atanh(m.xF);
    },
    complexCalc: (Model m) {
      // Always in radians - see 15C manual p. 131, "For the trigonometric..."
      m.resultXC = m.xC.atanh();
    },
    name: 'TANH-1');