.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Distributed under GPL .\" .\" Japanese Version Copyright (c) 2003 Akihiro MOTOKI .\" all rights reserved. .\" Translated Wed Jul 23 05:24:15 JST 2003 .\" by Akihiro MOTOKI .\" .\"WORD: sine 正弦 .\"WORD: cosine 余弦 .\"WORD: tangent 正接 .\" .TH CCOS 3 2008-08-06 "" "Linux Programmer's Manual" .\"O .SH NAME .\"O ccos, ccosf, ccosl \- complex cosine function .SH 名前 ccos, ccosf, ccosl \- 複素数の余弦 (cosine) .\"O .SH SYNOPSIS .SH 書式 .B #include .sp .BI "double complex ccos(double complex " z ");" .br .BI "float complex ccosf(float complex " z ");" .br .BI "long double complex ccosl(long double complex " z ");" .sp .\"O Link with \fI\-lm\fP. \fI\-lm\fP でリンクする。 .\"O .SH DESCRIPTION .SH 説明 .\"O The complex cosine function is defined as: 複素数の余弦 (cosine) 関数 ccos(z) は以下のように定義される。 .nf ccos(z) = (exp(i * z) + exp(\-i * z)) / 2 .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 cabs (3), .BR csin (3), .BR ctan (3), .BR complex (7)