Showing posts with label math. Show all posts
Showing posts with label math. Show all posts

Sunday, July 5, 2009

KixTart: ScriptControl JScript to Outsource Expression

Use Jscript object to calculate Cosine of a value...

Function Cosine($numValue)
$sc = CreateObject("ScriptControl")
$sc.Language = "jscript"
$result = $sc.Eval("Math.cos("+$numValue+")")
$sc = 0
$Cosine = $result
EndFunction

Test examples...

$testvalue = 45
$test = Cosine($testvalue)
? "cosine of $testvalue is: "+$test