Code covered by the BSD License
function isIt = islogoconsonantal(language) % ISLOGOCONSONANTAL True if one symbol can represent multiple words % Wikipedia: http://en.wikipedia.org/wiki/Logogram isIt = false; if strcmp(language, 'Egyptian') isIt = true; end
Contact us