📄 chapter8.r
字号:
## Example 8.1 "Pure" Transient Analysis/Synthesis## Compute the dyadic wavelet transform and the corresponding local## extrema:data("C0")dwC0 <- mw(C0,5)extC0 <- ext(dwC0)## Reconstruction from the extrema:recC0 <- mrecons(extC0)## Example 8.2 "Noisy" Transient Analysisdata("C4")dwC4 <- mw(C4,5)extC4 <- ext(dwC4)## Example 8.3 : "Noisy" Transient Detection/Synthesis## Trim the extrema:trC4 <- mntrim(extC4)## Reconstruction from the trimmed extrema:recC4 <- mrecons(trC4)## Example 8.5 Simple Reconstruction of a Speech Signaldata("HOWAREYOU")plot.ts(HOWAREYOU)cgtHOW <- cgt(HOWAREYOU,70,0.01,60)clHOW <- crc(Mod(cgtHOW),nbclimb=2000)## Simple reconstruction:srecHOW <- scrcrec(HOWAREYOU,cgtHOW,clHOW,ptile=0.0001,plot=2)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -