Loading AI tools
来自维基百科,自由的百科全书
tgmath.h
是C標準函數庫中的標頭檔,提供了數學函數的類型通用的巨集定義。使用這些巨集呼叫數學函數時,會根據參數自動對應到類型適合的數學函數,其效果類似於C++的函數多載,使得編程者不必繁瑣地去呼叫數學庫函數的單精度、雙精度、長雙精度、單精度複數、雙精度複數、長雙精度複數等各個版本。
一些常見數學函數既在math.h
有實數版本,也在complex.h
有複數版本。tgmath.h
提供了下述類型通用的巨集定義:
對於包含在math.h
中,但在complex.h
中沒有對應的函數,提供了下述通用類型的巨集:
對於包含在complex.h
中,但在math.h
中沒有對應的函數,提供了下述通用類型的巨集:
#include <tgmath.h>
int n;
float f;
double d;
long double ld;
float complex fc;
double complex dc;
long double complex ldc;
//实际调用了:
exp(n); //exp(n)
acosh(f); // acoshf(f)
sin(d); // sin(d)
atan(ld); // atanl(ld)
log(fc); // clogf(fc)
sqrt(dc); // csqrt(dc)
pow(ldc, f); // cpowl(ldc, f)
remainder(n, n); // remainder(n, n)
nextafter(d, f); // nextafter(d, f)
nexttoward(f, ld); // nexttowardf(f, ld)
copysign(n, ld); // copysignl(n, ld)
ceil(fc); // 未定义
rint(dc); // 未定义
fmax(ldc, ld); // 未定义
carg(n); // carg(n)
cproj(f); // cprojf(f)
creal(d); // creal(d)
cimag(ld); // cimagl(ld)
cabs(fc); // cabsf(fc)
carg(dc); // carg(dc)
cproj(ldc); // cprojl(ldc)
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.