How can I implement the following function in C#?
How can I implement the piano key frequency function in C#?
1.7k Views Asked by Alon Gubkin At
4
There are 4 best solutions below
7

440 * 12th root of 2 raised to n-49
= 440 * (2 ^ 1/12) ^(n-49)
= 440 * 2^(n/12) / 2^(49/12)
= 440 * 2^(n/12) / (2^4 * 2^1/12)
= 440 * ( 1 / 2^4 ) * 2^((n-1) /12)
= 8 * 55 * ( 1/16 ) * 2^((n-1) /12)
= 27.5 * 2^((n-1) /12)
so ....
double d = 27.5 * Math.Pow(2, (n-1) / 12.0)
And since 12th root of 2 = 1.0594630943592952645618252949463, then
double d = 27.5 * Math.Pow(1.0594630943592952645618252949463, (n-1))
so...
double d = 27.5 * Math.Pow(1.059463094359295, (n-1));
0

http://www.codeproject.com/script/Articles/ArticleVersion.aspx?aid=339638&av=501750
string funcion= "440*((2)^(1/12))^(X-49)";
X=4
double FX= GetValueFunc(4);
;) jeje