Mel scale transformation
MAYBE COMBINE LATER WITH OTHER SCALINGS: bark (sp?), ratio
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function x=mel(f)
0002 % Mel scale transformation
0003 % MAYBE COMBINE LATER WITH OTHER SCALINGS: bark (sp?), ratio
0004 x=2595*log10(1+f./700);
0005 return;