Euclidean 0 %1 1.44473 0.743304 2.3007 def calc( arg1, arg2 ): # Calculate whatever you want to show here, and return it. # For example, to return one half of the input number, # you would put this code here: # return DoubleObject( arg1.value()/ 2 ) # Please refer to the manual for more information. sinbeta = sin(arg2.value())/arg1.value() beta = asin(sinbeta) return DoubleObject (beta) %1 0 0.176977 -0.637118 %1 0 0 0 2.98182 4.04776 1.66457 2 0.452574 %1 0.796115 0.502022 5.49341 -1.09134 0.478656 2.63346 1.25626 -0.541512 -3.8197 1.68862 -0.901543 0.407481 0.675247 0.356816 -1 1 %1 def calc( arg1, arg2 ): # Calculate whatever you want to show here, and return it. # For example, to return one half of the input number, # you would put this code here: # return DoubleObject( arg1.value()/ 2 ) # Please refer to the manual for more information. sinbeta = arg1.value()*sin(arg2.value()) beta = asin(sinbeta) return DoubleObject (beta)