MCPcopy Create free account
hub / github.com/ActiveState/code / arcsin

Method arcsin

recipes/Python/59884_RPN_Stack_class/recipe-59884.py:199–201  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

197 self.pop(); self.push(newx)
198
199 def arcsin(self):
200 newx = math.asin(self.getx())
201 self.pop(); self.push(newx)
202
203 def arccos(self):
204 newx = math.acos(self.getx())

Callers

nothing calls this directly

Calls 3

getxMethod · 0.95
popMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected