Mono-Stereo(tuneR)
Mono-Stereo()所属R语言包:tuneR
Converting (extracting, joining) stereo to mono and vice versa
转换(提取,加盟)立体声到单声道,反之亦然
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to extract a channel from a stereo Wave object,
中提取一个通道的立体声Wave对象的功能,
用法----------Usage----------
mono(object, which = c("left", "right", "both"))
stereo(left, right)
参数----------Arguments----------
参数:object
Object of class Wave.
对象类Wave。
参数:which
Character, indicating whether the “left” or “right” channel should be extracted, or whether “both” channels should be averaged.
字符,表示“左”或“右”通道是否应被提取出来,或是否“”的渠道进行平均。
参数:left
Object of class Wave containing monophonic sound, to be used for the left channel.
类的对象Wave含有mono有声声音,用于左声道。
参数:right
Object of class Wave containing monophonic sound, to be used for the right channel (if missing, the left channel is duplicated). If right is missing, stereo returns whether left is stereo (TRUE) or mono (FALSE).
类的对象Wave包含mono的语音,用于右声道的声音(如果丢失,left通道被复制)。如果right丢失,stereo是否left是立体声(TRUE)或单(FALSE),返回。
值----------Value----------
An object of class Wave.
对象的类Wave。
If argument right is missing in stereo, a logical values is returned that indicates whether left is stereo (TRUE) or mono (FALSE).
如果参数right中缺少stereo,逻辑值,则返回,表示是否left是立体声(TRUE)或单声道(FALSE),。
(作者)----------Author(s)----------
Uwe Ligges, <a href="mailto:ligges@statistik.tu-dortmund.de">ligges@statistik.tu-dortmund.de</a>
参见----------See Also----------
Wave-class, Wave
波类,Wave的
实例----------Examples----------
Wobj <- sine(440, bit = 16)
Wobj
Wobj2 <- stereo(Wobj, Wobj)
Wobj2
mono(Wobj2, "right")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|