Method BaselineTf
BaselineTf(Single)
Implemented as:
(x <= min) ? base : Math.Sqrt(x+(base**2)-min)
...but with a special case check for 0.
This degrates to
Math.Sqrt(x)
when min and base are both 0
Declaration
public virtual float BaselineTf(float freq)
Parameters
Type | Name | Description |
---|---|---|
System.Single | freq |
Returns
Type | Description |
---|---|
System.Single |