Nothing
      NULL
#' 
#'\code{t} 'transpose' S3 method for \code{blockmatrix} object
#'
#' @param x a \code{blockmatrix} object 
#' @export
#' @rdname t
#' @method t blockmatrix
#' @S3method t blockmatrix
#' @aliases t
#'
#' @author Emanuele Cordano 
#' 
#' 
t.blockmatrix <- function (x)  {
	out <- lapply(FUN=t,x)
	class(out) <- "blockmatrix"
	return(out)
	
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.