SINCOS
Section: Linux Programmer's Manual (3)
Updated: 2004-10-05
Index
JM Home Page
roff page
名前
sincos, sincosf, sincosl - 正弦と余弦を同時に計算する
書式
#include <math.h>
void sincos(double x, double *sin, double *cos);
void sincosf(float x, float *sin, float *cos);
void sincosl(long double x, long double *sin, long double *cos);
-lm でリンクする。
説明
アプリケーションの中には、同じ角度
x
について正弦と余弦の両方の計算が必要なものがある。
この関数は両者を同時に計算し、結果を指定されたポインタの場所に格納する。
準拠
この関数は GNU による拡張である。
関連項目
cos(3),
sin(3),
tan(3),
feature_test_macros(7)
Index
- 名前
-
- 書式
-
- 説明
-
- 準拠
-
- 関連項目
-
This document was created by
man2html,
using the manual pages.
Time: 04:32:03 GMT, November 19, 2007