|
| 1 | +<!-- |
| 2 | +
|
| 3 | +@license Apache-2.0 |
| 4 | +
|
| 5 | +Copyright (c) 2024 The Stdlib Authors. |
| 6 | +
|
| 7 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | +you may not use this file except in compliance with the License. |
| 9 | +You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | +Unless required by applicable law or agreed to in writing, software |
| 14 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +See the License for the specific language governing permissions and |
| 17 | +limitations under the License. |
| 18 | +
|
| 19 | +--> |
| 20 | + |
| 21 | +# Logarithm |
| 22 | + |
| 23 | +> Compute the base `b` [logarithm][logarithm] of a single-precision floating-point number.. |
| 24 | +
|
| 25 | +<section class="usage"> |
| 26 | + |
| 27 | +## Usage |
| 28 | + |
| 29 | +```javascript |
| 30 | +var logf = require( '@stdlib/math/base/special/logf' ); |
| 31 | +``` |
| 32 | + |
| 33 | +#### logf( x, b ) |
| 34 | + |
| 35 | +Computes the base `b` logarithm of a single-precision floating-point number. |
| 36 | + |
| 37 | +```javascript |
| 38 | +var v = logf( 100.0, 10.0 ); |
| 39 | +// returns 2.0 |
| 40 | + |
| 41 | +v = logf( 16.0, 2.0 ); |
| 42 | +// returns 4.0 |
| 43 | + |
| 44 | +v = logf( 5.0, 1.0 ); |
| 45 | +// returns Infinity |
| 46 | +``` |
| 47 | + |
| 48 | +For negative `x` or `b`, the [logarithm][logarithm] is **not** defined. |
| 49 | + |
| 50 | +```javascript |
| 51 | +var v = logf( -4.0, 1.0 ); |
| 52 | +// returns NaN |
| 53 | + |
| 54 | +v = logf( 2.0, -4.0 ); |
| 55 | +// returns NaN |
| 56 | +``` |
| 57 | + |
| 58 | +</section> |
| 59 | + |
| 60 | +<!-- /.usage --> |
| 61 | + |
| 62 | +<section class="examples"> |
| 63 | + |
| 64 | +## Examples |
| 65 | + |
| 66 | +<!-- eslint no-undef: "error" --> |
| 67 | + |
| 68 | +```javascript |
| 69 | +var randu = require( '@stdlib/random/base/randu' ); |
| 70 | +var roundf = require( '@stdlib/math/base/special/roundf' ); |
| 71 | +var logf = require( '@stdlib/math/base/special/logf' ); |
| 72 | + |
| 73 | +var b; |
| 74 | +var x; |
| 75 | +var i; |
| 76 | + |
| 77 | +for ( i = 0; i < 100; i++ ) { |
| 78 | + x = roundf( randu() * 100.0 ); |
| 79 | + b = roundf( randu() * 5.0 ); |
| 80 | + console.log( 'logf( %d, %d ) = %d', x, b, logf( x, b ) ); |
| 81 | +} |
| 82 | +``` |
| 83 | + |
| 84 | +</section> |
| 85 | + |
| 86 | +<!-- /.examples --> |
| 87 | + |
| 88 | +<!-- C interface documentation. --> |
| 89 | + |
| 90 | +* * * |
| 91 | + |
| 92 | +<section class="c"> |
| 93 | + |
| 94 | +## C APIs |
| 95 | + |
| 96 | +<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> |
| 97 | + |
| 98 | +<section class="intro"> |
| 99 | + |
| 100 | +</section> |
| 101 | + |
| 102 | +<!-- /.intro --> |
| 103 | + |
| 104 | +<!-- C usage documentation. --> |
| 105 | + |
| 106 | +<section class="usage"> |
| 107 | + |
| 108 | +### Usage |
| 109 | + |
| 110 | +```c |
| 111 | +#include "stdlib/math/base/special/logf.h" |
| 112 | +``` |
| 113 | + |
| 114 | +#### stdlib_base_logf( x, b ) |
| 115 | + |
| 116 | +Computes the base `b` logarithm of a single-precision floating-point number. |
| 117 | + |
| 118 | +```c |
| 119 | +float v = stdlib_base_logf( 100.0f, 10.0f ); |
| 120 | +// returns 2.0f |
| 121 | +``` |
| 122 | + |
| 123 | +The function accepts the following arguments: |
| 124 | + |
| 125 | +- **x**: `[in] float` input value. |
| 126 | +- **b**: `[in] float` input value. |
| 127 | + |
| 128 | +```c |
| 129 | +float stdlib_base_logf( const float x, const float b ); |
| 130 | +``` |
| 131 | +
|
| 132 | +</section> |
| 133 | +
|
| 134 | +<!-- /.usage --> |
| 135 | +
|
| 136 | +<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 137 | +
|
| 138 | +<section class="notes"> |
| 139 | +
|
| 140 | +</section> |
| 141 | +
|
| 142 | +<!-- /.notes --> |
| 143 | +
|
| 144 | +<!-- C API usage examples. --> |
| 145 | +
|
| 146 | +<section class="examples"> |
| 147 | +
|
| 148 | +### Examples |
| 149 | +
|
| 150 | +```c |
| 151 | +#include "stdlib/math/base/special/logf.h" |
| 152 | +#include <stdlib.h> |
| 153 | +#include <stdio.h> |
| 154 | +
|
| 155 | +int main( void ) { |
| 156 | + float out; |
| 157 | + float x; |
| 158 | + float b; |
| 159 | + int i; |
| 160 | +
|
| 161 | + for ( i = 0; i < 100; i++ ) { |
| 162 | + x = ( (float)rand() / (float)RAND_MAX ) * 100.0f; |
| 163 | + b = ( (float)rand() / (float)RAND_MAX ) * 5.0f; |
| 164 | + out = stdlib_base_logf( x, b ); |
| 165 | + printf( "logf(%f, %f) = %f\n", x, b, out ); |
| 166 | + } |
| 167 | +} |
| 168 | +``` |
| 169 | + |
| 170 | +</section> |
| 171 | + |
| 172 | +<!-- /.examples --> |
| 173 | + |
| 174 | +</section> |
| 175 | + |
| 176 | +<!-- /.c --> |
| 177 | + |
| 178 | +<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> |
| 179 | + |
| 180 | +<section class="related"> |
| 181 | + |
| 182 | +</section> |
| 183 | + |
| 184 | +<!-- /.related --> |
| 185 | + |
| 186 | +<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> |
| 187 | + |
| 188 | +<section class="links"> |
| 189 | + |
| 190 | +[logarithm]: https://en.wikipedia.org/wiki/Logarithm |
| 191 | + |
| 192 | +<!-- <related-links> --> |
| 193 | + |
| 194 | +<!-- </related-links> --> |
| 195 | + |
| 196 | +</section> |
| 197 | + |
| 198 | +<!-- /.links --> |
0 commit comments