Dapatkan garis singgung dari bilangan kompleks.
=IMTAN(complex_num)
| Parameter | Deskripsi |
|---|---|
complex_num |
The complex number in the form "x+yi". |
The Excel IMTAN function returns the tangent of a complex number. For example, given the complex number "3+4i" as input, the function returns "-0.0001
=IMTAN("3+4i") // returns -0.000187346+0.999355987i
In Excel, the tangent of a complex number is equivalent to the following formula.
=IMDIV(IMSIN(z),IMCOS(z)) // equivalent to IMTAN(z)