
sin, sinf, sinl - cppreference.com
Otherwise, if the argument has integer type or the type double, (2) (sin) is called. Otherwise, (1) (sinf) is called. If the argument is complex, then the macro invokes the corresponding complex function …
sin, sinf, sinl | Microsoft Learn
Jul 9, 2025 · API reference for sin, sinf, and sinl; which calculate the sine of a floating-point value.
math - sin v/s sinf function in C - Stack Overflow
Jan 10, 2017 · sinf() was added to C in C99, which Microsoft Visual C++ does not fully support (even so, Visual C++ 6 was released before C99 was standardized). You can use the sin() function, which …
sin, sinf, sinl - C++ - API Reference Document
Otherwise, sinf is called. If the argument is complex, then the macro invokes the corresponding complex function (csinf, csin, csinl). If no errors occur, the sine of arg (sin (arg)) in the range [-1 ; +1], is …
sinf - Math.h - C - C++ Computing Reference with Worked Examples
Dec 18, 2011 · The sin functions compute the sine of x (measured in radians). The complex sine is defined by. sin ( ±0 ) returns ±0. sin ( ±∞ ) returns a NaN and raises the invalid floating-point …
sinf (3): sine function - Linux man page
The sin () function returns the sine of x, where x is given in radians. On success, these functions return the sine of x. If x is a NaN, a NaN is returned. If x is positive infinity or negative infinity, a domain …
Sin - C - W3cubDocs
sin, sinf, sinl ... 1-3) Computes the sine of arg (measured in radians). 4) Type-generic macro: If the argument has type long double, sinl is called. Otherwise, if the argument has integer type or the type …
sin - Open Group
These functions shall compute the sine of their argument x, measured in radians. An application wishing to check for error situations should set errno to zero and call feclearexcept (FE_ALL_EXCEPT) …
C sinl English - Runebook.dev
7) Type-generic macro: If the argument has type long double, (3) (sinl) is called. Otherwise, if the argument has integer type or the type double, (2) (sin) is called. Otherwise, (1) (sinf) is called. If the …
man sinf (1): sine function
man sinf (1): These functions shall compute the sine of their argument x, measured in radians. An application wishing to check for error situations should set errno to zero and call feclearexcept …