MATLAB: How can i plot the signal of the spoken text

plot speech signal

NET.addAssembly('System.Speech');
ss = System.Speech.Synthesis.SpeechSynthesizer;
ss.Volume = 100;
Speak(ss,'is this that book?')

Best Answer

Sitara - perhaps you can write the spoken text to a wav file which you could then read in and plot. See SpeechSynthesizer Class and in particular the methods SetOutputToWaveFile(String) or SetOutputToWaveFile(String, SpeechAudioFormatInfo).
Related Question