# / ---------------------------------------------------------------------------
# VarElement numeric
setMethod(
"/",
signature(e1 = "VarElementClass", e2 = "numeric"),
function(e1, e2){
(1/e2) * e1
}
)
# VarExpression numeric
setMethod(
"/",
signature(e1 = "VarExpressionClass", e2 = "numeric"),
function(e1, e2){
(1/e2) * e1
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.