Dapatkan kosekan dari bilangan kompleks
=IMCSC(complex_num)
| Parameter | Deskripsi |
|---|---|
complex_num |
The complex number in the form "x+yi". |
The Excel IMCSC function returns the cosecant of a complex number. For example, given "4+3i" as input, the function returns "-0.075489833+0.064877471i
=IMCSC("4+3i") // returns -0.075489833+0.064877471i
In Excel, the complex cosecant function is equivalent to the following formula.
=IMDIV(COMPLEX(1,0),IMSIN(z)) // equivalent to IMCSC(z)