File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
lib/node_modules/@stdlib/math/base/special/kernel-log1pf/docs Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
22{{alias}}( f )
3- Computes `logf(1+f) - f` for `1+f` in ~[sqrtf(2)/2, sqrtf(2)].
3+ Computes `log(1+f) - f` for `1+f` in `~[sqrt(2)/2, sqrt(2)]` as a
4+ single-precision floating-point number.
45
56 This function provides a common means for computing logarithms in base e.
67 Argument reduction and adding the final term of the polynomial must be done
2021 --------
2122 > var y = {{alias}}( 1.0 )
2223 ~0.1931
23- > y = {{alias}}( 1.4142135 )
24+ > y = {{alias}}( 1.4142135381698608 )
2425 ~0.4672
2526 > y = {{alias}}( NaN )
2627 NaN
Original file line number Diff line number Diff line change 1919// TypeScript Version: 4.1
2020
2121/**
22- * Computes `logf (1+f) - f` for `1+f` in `~[sqrtf(2)/2, sqrtf(2)]`.
22+ * Computes `log (1+f) - f` for `1+f` in `~[sqrtf(2)/2, sqrtf(2)]` as a single-precision floating-point number .
2323*
2424* ## Notes
2525*
You can’t perform that action at this time.
0 commit comments