Skip to content

Instantly share code, notes, and snippets.

@JcBernack
Created May 4, 2016 22:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save JcBernack/e78dc6b657be5d2c82278a61e92e589d to your computer and use it in GitHub Desktop.
Save JcBernack/e78dc6b657be5d2c82278a61e92e589d to your computer and use it in GitHub Desktop.
/// <summary>
/// Fast exponential approximation.
/// </summary>
/// <remarks>
/// Based on "A Fast, Compact Approximation of the Exponential Function" by Nicol N.Schraudolph (1999)
/// <code>e^x ~ a*x + b
/// a = 2 ^ (mantissa bits) / ln(2) ~ 12102203
/// b = (exponent bias) * 2^(mantissa bits) ~ 1065353216</code>
/// </remarks>
/// <param name="x">A number specifying a power.</param>
/// <returns>The number e raised to the power x.</returns>
public static float FastExp(float x)
{
var temp = (int)(12102203 * x + 1065353216);
return BitConverter.ToSingle(BitConverter.GetBytes(temp), 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment