reverse(sound)
reverse()所属R语言包:sound
Play a Sample Object Backwards
向后播放一个样本对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the Sample object (or wav file) played backwards.
返回的样本对象(或WAV文件)向后播放。
用法----------Usage----------
参数----------Arguments----------
参数:s
a Sample object, or a string giving the name of a wav file.
样品对象,或者一个字符串,给出一个wav文件的名称。
值----------Value----------
a Sample object with the same parameters but with the sound played backwards.
一个Sample对象具有相同的参数,但的声音演奏落后。
(作者)----------Author(s)----------
Matthias Heymann
实例----------Examples----------
waveform <- 2*((seq(0,80,length=88200)%%1^2)-.5)
s <- as.Sample(waveform,44100,16)
play(s)
play(reverse(s)) # now played backwards[现在向后播放]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|