Name
freq2car — transforms a frequency into a string
CALLING SEQUENCE
car=freq2car(f)
PARAMETERS
- Input
f= a frequency (1,4 or12)
- Output
car = a string
DESCRIPTION
Transforms a frequency into the corresponding string. Must be extended if one wants to introduce a new default frequency.
EXAMPLE
c = freq2car(1)
// Gives: 'a'
c = freq2car(4)
// Gives: 'q'
c=freq2car(12)
//Gives: 'm'