Rev 7624 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
options(digits=7)## powers, including complex onesouter(a <- -4:12, -2:7, "^")m <- outer(-4:12 +0i, b <- seq(-.5,2, by=.5), "^")dimnames(m) <- list(paste(a), "^" = sapply(b,format))round(m,3)## fft():for(n in 1:30) cat("\nn=",n,":", round(fft(1:n), 8),"\n")