如何用matlab播放一段函数

用到sound函数即可。



    sound(y)
    sound(y,Fs)

    sound(y,Fs,nBits)

参数 Fs表示播放频率, Fs为采样率,即单位时间的样本个数,nBits表示每个样本点用几个比特表示,即分辨率。

想要终止播放,可用

>> clear sound

读取文件

[y,Fs] = audioread(filename)                读取

[y,Fs] = audioread(filename,samples)   播放区间

[y,Fs] = audioread(___,dataType)          返回文件类型



filename — Name of file to readstring

Name of file to read, specified as a string that includes the file extension. If a path is specified, it can be absolute, relative or partial. 


Example: 'myFile.mp3' 

Example: '../myFile.mp3' 

Example: 'C:\temp\myFile.mp3'


添加voicebox

>> path('C:\toolbox\voicebox',path)

你可能感兴趣的:(如何用matlab播放一段函数)