R/plotJGraph.R

Defines functions plotJGraph

Documented in plotJGraph

plotJGraph <- function(A,fn="Net",th = 1e-06, mylayout = NULL){
M <- dim(A)[1]
p <- dim(A)[2]

#### plot case ####
for(iter in 1:M)
{
  plotGraph(A[iter,,],th = th, fn=paste(fn,iter,sep=""),mylayout = mylayout)
}
}

Try the equSA package in your browser

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

equSA documentation built on May 6, 2019, 1:06 a.m.