R/composite.stack.R

Defines functions composite.stack

Documented in composite.stack

composite.stack <- function(x, y, tau){
    n <- nrow(x)
    x <- kronecker(rep(1, length(tau)), x)
    y <- kronecker(rep(1, length(tau)), y)
    tau <- rep(tau, each=n)
    list(x=x, y=y, tau=tau)
}

Try the qrnn package in your browser

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

qrnn documentation built on April 27, 2023, 9:07 a.m.