Skip to content

Instantly share code, notes, and snippets.

@mmower
Created August 11, 2008 20:18
Show Gist options
  • Save mmower/4932 to your computer and use it in GitHub Desktop.
Save mmower/4932 to your computer and use it in GitHub Desktop.
def note_to_freq( note_num )
base_note_num = note_num - 69
440.0 * Math.exp( 0.057762265 * ( note_num - 69 ) )
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment