OpasnetUtils/Math

From Testiwiki
Revision as of 10:51, 15 June 2012 by Mori (talk | contribs)
Jump to: navigation, search



Description

Defines basic mathematical operations (log, exp, abs, ...) for ovariables

Code

- Hide 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)
	}
)

See also