Scroll Down to See All
abortabsacosasctimeasctime_rasinassertatanatan2atexitatofatoiatolbsearchbtowccalloccatclosecatgetscatopenceilclearerrclockcoscoshctimectime_rdifftimediverferfcexitexpfabsfclosefdopenfeofferrorfflushfgetcfgetposfgetsfgetwcfgetwsfopenfprintffputcfputwsfreadfreefreopenfrexpfscanffseekfsetposftellfwidefwprintffwritefwscanfgetcgetchargetenvgetwcgetwchargmtimegmtime_rhypotisalnumisalphaisasciiisblankiscntrlisdigitisgraphislowerisprintispunctisspaceisupperiswalnumiswalphaiswblankiswcntrliswctypeiswdigitiswgraphiswloweriswprintiswpunctiswspaceiswupperiswxdigitisxdigitj0j1jnlabsldexpldivlocaleconvlocaltimelocaltime_rloglog10longjmpmallocmblenmbrlenmbrtowcmbsinitmbsrtowcsmbstowcsmbtowcmemchrmemcmpmemcpymemmovememsetmktimemodfnextafternextafterlnexttowardnexttowardlnl_langinfoperrorpowprintfputcputcharputenvputsputwcputwcharqsortquantexpd64quantexpd128quantized32quantized64quantized128samequantumd32raiserandrand_rreallocregcompregerrorregexecregfreeremoverenamerewindscanfsetbufsetjmpsetlocalesetvbufsignalsinsinhsnprintfsprintfsqrtsrandsscanfstrcasecmpstrcatstrchrstrcmpstrcollstrcpystrcspnstrerrorstrfmonstrftimestrlenstrncasecmpstrncatstrncmpstrncpystrpbrkstrptimestrrchrstrspnstrstrstrtodstrtod32strtod64strtod128strtofstrtokstrtok_rstrtolstrtoldstrtoulstrxfrmswprintfswscanfsystemtantanhtimetime64tmpfiletmpnamtoasciitolowertouppertowctranstowlowertowupperungetcungetwcva_argva_copyva_endva_startvfprintfvfscanfvfwprintfvfwscanfvprintfvscanfvsprintfvsnprintfvsscanfvswprintfvswscanfvwprintfvwscanfwcrtombwcscatwcschrwcscmpwcscollwcscpywcscpywcsftimewcslenwcsncatwcsncmpwcsncpywcspbrkwcsptimewcsrchrwcsrtombswcsspnwcsstrwcstodwcstod32wcstod64wcstod128wcstofwcstokwcstolwcstoldwcstombswcstoulwcsxfrmwctobwctombwctranswctypewcwidthwmemchrwmemcmpwmemcpywmemmovewmemsetwprintfwscanfy0y1yn



Function Details : quantexpd32

floatquantexpd32(float x) ;

Return Type : float

Single-precision floating point (±3.4E±38, ~7 decimal digits)
Read about return values of quantexpd32 function .

1st Parameter Type : float

Single-precision floating point (±3.4E±38, ~7 decimal digits)

1st Parameter

The input value for which the quantized exponential will be computed.

Read more about parameters of quantexpd32 in parameters section
The quantexpd32function in C language Determines the exponent of a decimal floating-point number (_Decimal32). Note: This is part of the optional decimal floating-point arithmetic support.
The quantexpd32 function computes the quantum exponent of a _Decimal32 number. The quantum exponent is the power of 10 that the significand of the decimal floating-point number has to be scaled by to produce the given number. This function is useful in financial calculations and other domains where exact decimal representation is crucial.
The quantexpd32function takes 1 parameter:
  • float `x`: The input value for which the quantized exponential will be computed.
Computes the exponential of the input `x` using a quantized representation for 32-bit floating-point values. Optimized for scenarios requiring reduced precision and fast computation, such as in machine learning or graphics. Returns the quantized exponential result as a `float`.
The quantexpd32 function return value :
  • Returns the quantum exponent of x

Output

This example demonstrates the use of quantexpd32 to determine the quantum exponents of two _Decimal32 numbers. Note that the actual output may vary depending on the implementation and how _Decimal32 is printed.