Browse Source

Restore missing semicolon (typo)

atr-indicator
John C Barstow 11 years ago
parent
commit
2a85997b68
  1. 2
      src/Numerics/Distributions/Beta.cs

2
src/Numerics/Distributions/Beta.cs

@ -126,7 +126,7 @@ namespace MathNet.Numerics.Distributions
}
else
{
a = ((mean - min) * (2 * likely - min - max)) / ((likely - mean) * (max - min))
a = ((mean - min) * (2 * likely - min - max)) / ((likely - mean) * (max - min));
}
double b = (a * (max - mean)) / (mean - min);

Loading…
Cancel
Save