OpasnetUtils/Math
Moderator:Nobody (see all) Click here to sign up. |
This page is a stub. You may improve it into a full page. |
Upload data
|
Description
Defines basic mathematical operations (log, exp, abs, ...) for ovariables
Code
# SETMETHOD MATH ################### Math defines basic mathematical operations (log, exp, abs, ...) for ovariables temp <- setMethod( f = "Math", signature = signature(x = "ovariable"), definition = function(x) { x@output$Result <- callGeneric(x@output$Result) return(x) } ) |