.\" 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:07:40 JST 2003 .\" by Akihiro MOTOKI .\" .\"WORD: arc sine 逆正弦 .\"WORD: arc cosine 逆余弦 .\"WORD: arc tangent 逆正接 .\"WORD: real part 実部 .\"WORD: imaginary part 虚部 .\" .TH CASIN 3 2008-08-06 "" "Linux Programmer's Manual" .\"O .SH NAME .SH 名前 .\"O casin, casinf, casinl \- complex arc sine casin, casinf, casinl \- 複素数の逆正弦 (arc sine) .\"O .SH SYNOPSIS .SH 書式 .B #include .sp .BI "double complex casin(double complex " z ); .br .BI "float complex casinf(float complex " z ); .br .BI "long double complex casinl(long double complex " z ); .sp .\"O Link with \fI\-lm\fP. \fI\-lm\fP でリンクする。 .\"O .SH DESCRIPTION .SH 説明 .\"O The .\"O .BR casin () .\"O function calculates the complex arc sine of .\"O .IR z . .\"O If \fIy\ =\ casin(z)\fP, then \fIz\ =\ csin(y)\fP. .\"O The real part of .\"O .I y .\"O is chosen in the interval [\-pi/2,pi/2]. .BR casin () 関数は複素数 .I z の逆正弦 (arg sine) を計算する。 \fIy\ =\ casin(z)\fP ならば、 \fIz\ =\ csin(y)\fP が成立する。 .I y の実部の値は区間 [\-pi/2,pi/2] から選択される。 .LP .\"O One has: 次の関係が成立する: .nf casin(z) = \-i clog(iz + csqrt(1 \- z * z)) .fi .\"O .SH VERSIONS .SH バージョン .\"O These functions first appeared in glibc in version 2.1. これらの関数は glibc バージョン 2.1 で初めて登場した。 .\"O .SH "CONFORMING TO" .SH 準拠 C99. .\"O .SH "SEE ALSO" .SH 関連項目 .BR ccos (3), .BR clog (3), .BR complex (7)