Subversion Repositories bdplot

Rev

Rev 42 | Rev 65 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42 Rev 57
Line 1... Line 1...
1
### a function to plot all columns in a matrix
1
### a function to plot all columns in a matrix
2
 
2
 
3
bdplotmat <- function(x,y=NULL,cols=NULL,ltys=NULL,...){
3
bdmatplot <- function(x,y=NULL,cols=NULL,ltys=NULL,...){
4
 
4
 
5
  if(is.null(y)){
5
  if(is.null(y)){
6
    y <- x
6
    y <- x
7
    dim.y <- dim(y)
7
    dim.y <- dim(y)
8
    x <- 1:dim.y[1]
8
    x <- 1:dim.y[1]
Line 29... Line 29...
29
 
29
 
30
  }
30
  }
31
 
31
 
32
}
32
}
33
 
33
 
-
 
34
## for backward compatibility
-
 
35
bdplotmat <- bdmatplot