File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/math/base/special/pow Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,11 +153,11 @@ out = stdlib_base_pow( 4.0, 0.5 );
153
153
154
154
The function accepts the following arguments:
155
155
156
- - ** b ** : ` [in] double ` input value .
157
- - ** x ** : ` [in] double ` input value .
156
+ - ** base ** : ` [in] double ` base .
157
+ - ** exponent ** : ` [in] double ` exponent .
158
158
159
159
``` c
160
- double stdlib_base_pow ( const double b , const double x );
160
+ double stdlib_base_pow ( const double base , const double exponent );
161
161
```
162
162
163
163
</section>
@@ -184,9 +184,9 @@ double stdlib_base_pow( const double b, const double x );
184
184
#include <stdio.h>
185
185
186
186
int main( void ) {
187
+ double out;
187
188
double b;
188
189
double x;
189
- double out;
190
190
int i;
191
191
192
192
for ( i = 0; i < 100; i++ ) {
You can’t perform that action at this time.
0 commit comments