tan()

Table of Contents

Definition

tan() returns the tangent of a given numerical value in radians.

Examples

The following example calculates the tangent for each row number.

| makeresults count=5
| eval row=1
| accum row
| eval tan=tan(row)
Screenshot of the previous example’s result

Further Reading