view util/matlab_midi/midi2freq.m @ 212:1d134a1b6f95 luisf_dev

Propagate the change from 'mailhe' to 'opt' in two_step_DL to the examples
author bmailhe
date Wed, 21 Mar 2012 18:13:02 +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);