Skip to content

Commit

Permalink
feat: add math/base/special/minabsf
Browse files Browse the repository at this point in the history
PR-URL: #2832
Ref: #649

---------

Signed-off-by: Philipp Burckhardt <[email protected]>
Co-authored-by: Philipp Burckhardt <[email protected]>
Reviewed-by: Philipp Burckhardt <[email protected]>
  • Loading branch information
gunjjoshi and Planeshifter authored Aug 31, 2024
1 parent 0215bd7 commit d01e0f3
Show file tree
Hide file tree
Showing 24 changed files with 1,853 additions and 0 deletions.
225 changes: 225 additions & 0 deletions lib/node_modules/@stdlib/math/base/special/minabsf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,225 @@
<!--
@license Apache-2.0
Copyright (c) 2024 The Stdlib Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# minabsf

> Return the minimum absolute single-precision floating-point number.
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var minabsf = require( '@stdlib/math/base/special/minabsf' );
```

#### minabsf( x, y )

Returns the minimum absolute single-precision floating-point number.

```javascript
var v = minabsf( -4.2, 3.14 );

This comment has been minimized.

Copy link
@kgryte

kgryte Sep 6, 2024

Member

@gunjjoshi This is a less than ideal example, as users may be confused that the return value is not actually 3.14. Maybe do something like

var v = minabsf( -4.0, 3.0 );
// returns 3.0
// returns ~3.14

v = minabsf( +0.0, -0.0 );
// returns +0.0
```

If any argument is `NaN`, the function returns `NaN`.

```javascript
var v = minabsf( 4.2, NaN );
// returns NaN

v = minabsf( NaN, 3.14 );
// returns NaN
```

</section>

<!-- /.usage -->

<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

</section>

<!-- /.notes -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var randu = require( '@stdlib/random/base/randu' );
var minabsf = require( '@stdlib/math/base/special/minabsf' );

var x;
var y;
var v;
var i;

for ( i = 0; i < 100; i++ ) {
x = ( randu() * 1000.0 ) - 500.0;

This comment has been minimized.

Copy link
@kgryte

kgryte Sep 6, 2024

Member

@gunjjoshi Similar to how we updated benchmarks to use random/array/* packages, would be good in future packages to do something similar so that we are not having to create new random values on each iteration. This example style stems from when we did not have the random/array/* packages. The main thing for float32 packages is to set the corresponding output dtype when calling random/array/uniform.

y = ( randu() * 1000.0 ) - 500.0;
v = minabsf( x, y );
console.log( 'minabsf(%d,%d) = %d', x, y, v );
}
```

</section>

<!-- /.examples -->

<!-- C interface documentation. -->

* * *

<section class="c">

## C APIs

<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- C usage documentation. -->

<section class="usage">

### Usage

```c
#include "stdlib/math/base/special/minabsf.h"
```

#### stdlib_base_minabsf( x, y )

Returns the minimum absolute single-precision floating-point number.

```c
float out = stdlib_base_minabsf( -4.2f, 3.14f );
// returns 3.14f

out = stdlib_base_minabsf( 0.0f, -0.0f );
// returns +0.0f
```

The function accepts the following arguments:

- **x**: `[in] float` input value.
- **y**: `[in] float` input value.

```c
float stdlib_base_minabsf( const float x, const float y );
```
</section>
<!-- /.usage -->
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
<section class="notes">
</section>
<!-- /.notes -->
<!-- C API usage examples. -->
<section class="examples">
### Examples
```c
#include "stdlib/math/base/special/minabsf.h"
#include <stdlib.h>
#include <stdio.h>
int main( void ) {
float x;
float y;
float v;
int i;

This comment has been minimized.

Copy link
@kgryte

kgryte Sep 6, 2024

Member

@gunjjoshi The empty whitespace on this line can be removed. Something seems off with how EditorConfig is working in your IDE, as trailing whitespace should automatically be removed.

This comment has been minimized.

Copy link
@gunjjoshi

gunjjoshi Sep 6, 2024

Author Member

Thanks for suggesting, I'll check the settings of EditorConfig once.

for ( i = 0; i < 100; i++ ) {
x = ( ( (float)rand() / (float)RAND_MAX ) * 1000.0f ) - 500.0f;
y = ( ( (float)rand() / (float)RAND_MAX ) * 1000.0f ) - 500.0f;
v = stdlib_base_minabsf( x, y );
printf( "x: %f, y: %f, minabsf(x, y): %f\n", x, y, v );
}
}
```

</section>

<!-- /.examples -->

</section>

<!-- /.c -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

</section>

<!-- /.references -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

<!-- <related-links> -->

<!-- </related-links> -->

</section>

<!-- /.links -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var bench = require( '@stdlib/bench' );
var randu = require( '@stdlib/random/array/uniform' );
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
var pkg = require( './../package.json' ).name;
var minabsf = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var x;
var y;
var z;
var i;

x = randu( 100, -500.0, 500.0 );
y = randu( 100, -500.0, 500.0 );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
z = minabsf( x[ i % x.length ], y[ i % y.length ] );
if ( isnanf( z ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnanf( z ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

'use strict';

// MODULES //

var resolve = require( 'path' ).resolve;
var bench = require( '@stdlib/bench' );
var randu = require( '@stdlib/random/array/uniform' );
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
var tryRequire = require( '@stdlib/utils/try-require' );
var pkg = require( './../package.json' ).name;


// VARIABLES //

var minabsf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
var opts = {
'skip': ( minabsf instanceof Error )
};


// MAIN //

bench( pkg+'::native', opts, function benchmark( b ) {
var x;
var y;
var z;
var i;

x = randu( 100, -500.0, 500.0 );
y = randu( 100, -500.0, 500.0 );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
z = minabsf( x[ i % x.length ], y[ i % y.length ] );
if ( isnanf( z ) ) {
b.fail( 'should not return NaN' );
}
}
b.toc();
if ( isnanf( z ) ) {
b.fail( 'should not return NaN' );
}
b.pass( 'benchmark finished' );
b.end();
});
Loading

1 comment on commit d01e0f3

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
math/base/special/minabsf $\color{green}161/161$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}161/161$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.