Nothing
#' @title beamGlobalEM
#'
#' @description Generates global stiffness matrix for beams.
#'
#' @usage beamGlobalEM(beamExEM)
#'
#' @param beamExEM Expanded Element Matrix
#'
#' @return Produces large (n x n) global matrix
#' \item{GlobalMat}{Global matrix}
#'
#' @examples
#' data(beamExMat)
#'
#' beamExEM = beamExMat
#' GMat = beamGlobalEM(beamExEM)
#'
#' @export
beamGlobalEM = function(beamExEM){
bGloMat = Reduce('+', beamExEM)
return(bGloMat) }
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.