⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stft.r

📁 一般的支持向量机算法比较单一
💻 R
字号:
stft <- function(X, win=min(80,floor(length(X)/10)),                  inc=min(24, floor(length(X)/30)), coef=64, 		 wtype="hanning.window")  {    numcoef <- 2*coef    if (win > numcoef)      {	win <- numcoef	cat ("stft: window size adjusted to", win, ".\n")      }    numwin <- trunc ((length(X) - win) / inc)    ## compute the windows coefficients    wincoef <- eval(parse(text=wtype))(win)    ## create a matrix Z whose columns contain the windowed time-slices    z <- matrix (0, numwin + 1, numcoef)    y <- z    st <- 1    for (i in 0:numwin)      {	z[i+1, 1:win] <- X[st:(st+win-1)] * wincoef	y[i+1,] <- fft(z[i+1,])	st <- st + inc      }    Y<- list (values = Mod(y[,1:coef]), windowsize=win, increment=inc,		  windowtype=wtype)    class(Y) <- "stft"    return(Y)  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -