MATLAB: Say /a/

speech recognition

how can I write a program in matlab to say /a/?

Best Answer

On a PC
textIn = 'ah';
ha = actxserver('SAPI.SpVoice');
invoke(ha,'speak',textIn);
Related Question