R/polyMul.R

Defines functions polyMul

Documented in polyMul

polyMul <-
function(p, q){ 
m <- outer(p, q)
return(as.vector(tapply(m, row(m) + col(m), sum)))
}

Try the astsa package in your browser

Any scripts or data that you put into this service are public.

astsa documentation built on Jan. 10, 2023, 1:11 a.m.