R/GSC.R

GSC <- function (p,N,sierp=TRUE) {   # here p is the probability and N the number of ramifications
  if (N==1) return (simMatrix(p,sierp))
  else  
    return(kronecker(GSC(p,N-1,sierp),simMatrix(p,sierp)))
}

Try the FractalParameterEstimation package in your browser

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

FractalParameterEstimation documentation built on July 10, 2019, 5:05 p.m.