Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
tan(z)
public
Redefined to handle a Complex argument.
# File lib/complex.rb, line 511
def tan(z)
if Complex.generic?(z)
tan!(z)
else
sin(z)/cos(z)
end
end