R/PathList.R

Defines functions `PathList`

`PathList` <-
function(C,D){
    L <- nrow(C)
    for(i in D:1) {
        L <- c(C[L[1],i],L)
    }
    return(L)
}

Try the histogram package in your browser

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

histogram documentation built on May 2, 2019, 8:32 a.m.