Mercurial > hg > smallbox
view util/matlab_midi/midi2freq.m @ 186:9c418bea7f6a bug_386
Addresses Bug #386: removed the 4th output variable (versn) in all calls of function fileparts.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 09 Feb 2012 17:25:14 +0000 |
parents | a30e8bd6d948 |
children |
line wrap: on
line source
function f = midi2freq(m) % f = midi2freq(m) % % Convert MIDI note number (m=0-127) to % frequency, f, in Hz % (m can also be a vector or matrix) % % Copyright (c) 2009 Ken Schutte % more info at: http://www.kenschutte.com/midi f = (440/32)*2.^((m-9)/12);