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