Skip to content
Prev 257069 / 398506 Next

Help me create a hyper-structure

Alaios <alaios <at> yahoo.com> writes:
Estimationstruct <- function ( xorder, yorder, estimated) {
  list (xorder= xorder,
yorder=yorder,estimated=estimated)
}

per.sr.struct <- replicate(10,
             Estimationstruct(0L,0L,matrix(nrow=256,ncol=256)),
   simplify=FALSE)
all.sr.struct <-   replicate(20,per.sr.struct,simplify=FALSE)
I think you just missed simplify=FALSE in the last step ...