Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Last active March 29, 2018 08:52
Show Gist options
  • Save kjunichi/e7dcba6f3593cbff571a966c38c61fda to your computer and use it in GitHub Desktop.
Save kjunichi/e7dcba6f3593cbff571a966c38c61fda to your computer and use it in GitHub Desktop.
ドレミの周波数をラがAでAは440Hzから求めたメモ
2^(1/12)

A = 440
#
G = 440*(2^(1/12))^(-2)
#
F = G*(2^(1/12))^(-2)
#
E = F*(2^(1/12))^(-1)
#
D = E*(2^(1/12))^(-2)
#
C = D*(2^(1/12))^(-2)
#
B = A*(2^(1/12))^(2)

[C,D,E,F,G,A,B]

CC = B*(2^(1/12))

DD = CC*(2^(1/12))^2

EE = DD*(2^(1/12))^2

FF = EE*(2^(1/12))

GG=FF*(2^(1/12))^2

AA=GG*(2^(1/12))^2

BB=AA*(2^(1/12))^2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment