saying a message in matlab

1-how can say a message Computerized in matlab? for example
if a=b
saying in Computerized ' a and b are matching'
else
saying in Computerized ' a and b are not matching'
end
2-please tell with which command can run a .mp3 in matlab?

 采纳的回答

You mean have the computer synthesize speech?
  • On Windows, this can be done using .NET. There happens to be an example of this in a blog post on .NET in MATLAB.
  • On a Mac, use the "say" system command:
system('say "Hello, World!"')
  • On Linux, techniques may vary from distro to distro. Links like this and this may be helpful, and then you can use the system command like in the Mac case.

2 个评论

thanks dear
yes i mean 'computer synthesize speech'
i use win
let me check
perfect,great!

请先登录,再进行评论。

更多回答(1 个)

Wayne King
Wayne King 2011-9-1

1 个投票

Hi Mohammed, If you have the DSP System Toolbox, the System object dsp.AudioFileReader can read an MP3 file on Windows. Additionally, there are mp3write and mp3read utilities on the file exchange, but I would recommend that you just store these as vectors since they are not long utterances. Store them as .mat files that you can load when your program starts and then use soundsc() to play them.
It seems a lot of overhead to be reading these files (whether they are mp3, or WAV, etc).
Wayne

1 个评论

nice,
is it possible matlab says a message(Computerized)?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by