.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Distributed under GPL .\" .\" Japanese Version Copyright (c) 2003 Akihiro MOTOKI .\" all rights reserved. .\" Translated Thu Jul 24 00:22:25 JST 2003 .\" by Akihiro MOTOKI .\" .\"WORD: arc sine 逆正弦 .\"WORD: arc cosine 逆余弦 .\"WORD: arc tangent 逆正接 .\"WORD: real part 実部 .\"WORD: imaginary part 虚部 .\" .TH CATAN 3 2008-08-06 "" "Linux Programmer's Manual" .SH 名前 catan, catanf, catanl \- 複素数の逆正接 (arc tangent) .SH 書式 .B #include .sp .BI "double complex catan(double complex " z ); .br .BI "float complex catanf(float complex " z ); .br .BI "long double complex catanl(long double complex " z ); .sp \fI\-lm\fP でリンクする。 .SH 説明 .BR catan () 関数は複素数 .I z の逆正接 (arc tangent) を計算する。 \fIy = catan(z)\fP ならば、 \fIz = ctan(y)\fP が成立する。 .I y の実部の値は区間 [\-pi/2,pi/2] から選択される。 .LP 次の関係が成立する: .nf catan(z) = 1 / 2i clog((1 + iz) / (1 \- iz)) .fi .SH バージョン これらの関数は glibc バージョン 2.1 で初めて登場した。 .SH 準拠 C99. .SH 関連項目 .BR ccos (3), .BR clog (3), .BR complex (7)