R/dim.blockmatrix.R

NULL

#' 
#'\code{dim} S3 method for \code{blockmatrix} object
#'
#' @param x a \code{blockmatrix} object 
#' @export
#' @rdname dim
#' @method dim blockmatrix
#' @S3method dim blockmatrix
#' @aliases dim
#'
#' @author Emanuele Cordano 
#' 
#' 


dim.blockmatrix <- function (x)  {
	
	return(dim(as.matrix(x$value)))
	
}

Try the blockmatrix package in your browser

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

blockmatrix documentation built on May 2, 2019, 6:11 a.m.