public ITrigonometricFunction WithOutputSignalType(OutputSignalType type)
        {
            _Method     = ApproximationMethod.None;
            _SignalType = type;

            return(this);
        }
        public IWithCordicApproximation WithCordicApproximation()
        {
            _Method     = ApproximationMethod.CORDIC;
            _SignalType = OutputSignalType.Auto;

            return(this);
        }
Пример #3
0
 public IMathFunction WithOutputSignalType(OutputSignalType type)
 {
     _SignalType = type;
     return(this);
 }
 public new ISignedSqrt WithOutputSignal(OutputSignalType type) => base.WithOutputSignal(type);
 protected T WithOutputSignal(OutputSignalType type)
 {
     _OutputSignalType = type;
     return((T)this);
 }