-
Notifications
You must be signed in to change notification settings - Fork 1
Tan
Jip Claassens edited this page Jul 6, 2026
·
6 revisions
Trigonometric functions tan(gent)
- tan(angle)
tan(angle) results in the tangent of data item angle.
data item angle need to be expressed in the unit radian (radiaal), the SI unit for angles.
data item angle with float32 or float64 value type
5.18
attribute<float64> Angle_rad (ADomain) := Angle * pi() / 180.0;
attribute<float64> tanAngle_rad (ADomain) := tan(Angle_rad);
| Angle(°) | Angle_rad(rad) | tanAngle_rad |
|---|---|---|
| 0 | 0 | 0 |
| 30 | 0.52 | 0.58 |
| 45 | 0.79 | 1 |
| 420 | 7.33 | 1.73 |
| null | null | null |
ADomain, nr of rows = 5
GeoDMS ©Object Vision BV. Source code distributed under GNU GPL-3. Documentation distributed under CC BY-SA 4.0.