NCL Index

NCL Index#

NCL Function Description Python Equivalent Notes
sin()Computes the sine of numeric typesmath.sin() or numpy.sin()example notebook
cos()Computes the cosine of numeric typesmath.cos() or numpy.cos()example notebook
tan()Computes the tangent of numeric typesmath.tan() or numpy.tan()example notebook
asin()Computes the inverse sine of numeric typesmath.asin() or numpy.arcsin()example notebook
acos()Computes the inverse cosine of numeric typesmath.acos() or numpy.arccos()example notebook
atan()Computes the inverse cosine of numeric typesmath.atan() or numpy.arctan()example notebook
atan2()Computes the inverse tangent of (y/x) for numeric typesmath.atan2() or numpy.arctan2()example notebook
cosh()Computes the hyperbolic cosine of numeric typesmath.cosh() or numpy.cosh()example notebook
sinh()Computes the hyperbolic sine of numeric typesmath.sinh() or numpy.sinh()example notebook
tanh()Computes the hyperbolic tangent of numeric typesmath.tanh() or numpy.tanh()example notebook
(71 more rows not shown)