From 40011f1058f5214541a3474f241c7616f948c2cb Mon Sep 17 00:00:00 2001 From: Gunj Joshi Date: Sun, 27 Oct 2024 23:35:39 +0530 Subject: [PATCH 1/3] Update index.js Signed-off-by: Gunj Joshi --- .../@stdlib/math/base/special/fmod/examples/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fmod/examples/index.js b/lib/node_modules/@stdlib/math/base/special/fmod/examples/index.js index 9664a0ac168c..dcd99929a8bf 100644 --- a/lib/node_modules/@stdlib/math/base/special/fmod/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/fmod/examples/index.js @@ -29,5 +29,5 @@ var i; for ( i = 0; i < 100; i++ ) { x = round( randu() * 10.0 ); y = round( randu() * 10.0 ) - 5.0; - console.log( '%d^%d = %d', x, y, fmod( x, y ) ); + console.log( '%d%%%d = %d', x, y, fmod( x, y ) ); } From 41afe19be0d81447ea85b6c5f8af495e9b5fb2c3 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Mon, 28 Oct 2024 23:25:12 +0530 Subject: [PATCH 2/3] feat: add constants/float32/min-base2-exponent --- .../float32/min-base2-exponent/README.md | 143 ++++++++++++++++++ .../float32/min-base2-exponent/docs/repl.txt | 13 ++ .../min-base2-exponent/docs/types/index.d.ts | 33 ++++ .../min-base2-exponent/docs/types/test.ts | 28 ++++ .../min-base2-exponent/examples/index.js | 24 +++ .../constants/float32/min_base2_exponent.h | 27 ++++ .../float32/min-base2-exponent/lib/index.js | 54 +++++++ .../float32/min-base2-exponent/manifest.json | 36 +++++ .../float32/min-base2-exponent/package.json | 71 +++++++++ .../float32/min-base2-exponent/test/test.js | 38 +++++ 10 files changed, 467 insertions(+) create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/README.md create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/include/stdlib/constants/float32/min_base2_exponent.h create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/manifest.json create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/package.json create mode 100644 lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/README.md b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/README.md new file mode 100644 index 000000000000..01ebe5241cbc --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/README.md @@ -0,0 +1,143 @@ + + +# FLOAT32_MIN_BASE2_EXPONENT + +> The minimum biased base 2 exponent for a normal [single-precision floating-point number][ieee754]. + +
+ +## Usage + + + +```javascript +var FLOAT32_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float32/min-base2-exponent' ); +``` + +#### FLOAT32_MIN_BASE2_EXPONENT + +The minimum biased base 2 exponent for a normal [single-precision floating-point number][ieee754]. + + + +```javascript +var bool = ( FLOAT32_MIN_BASE2_EXPONENT === -126 ); +// returns true +``` + +
+ + + +
+ +## Examples + + + + + +```javascript +var FLOAT32_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float32/min-base2-exponent' ); + +console.log( FLOAT32_MIN_BASE2_EXPONENT ); +// => -126 +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/constants/float32/min_base2_exponent.h" +``` + +#### STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT + +Macro for the minimum biased base 2 exponent for a normal [single-precision floating-point number][ieee754]. + +
+ + + + + +
+ +
+ + + + + +
+ +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/repl.txt new file mode 100644 index 000000000000..89440a03271b --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/repl.txt @@ -0,0 +1,13 @@ + +{{alias}} + The minimum biased base 2 exponent for a normalized single-precision + floating-point number. + + Examples + -------- + > {{alias}} + -126 + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/index.d.ts new file mode 100644 index 000000000000..466e3834b354 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/index.d.ts @@ -0,0 +1,33 @@ +/* +* @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. +*/ + +// TypeScript Version: 4.1 + +/** +* The minimum biased base 2 exponent for a normal single-precision floating-point number. +* +* @example +* var min = FLOAT32_MIN_BASE2_EXPONENT; +* // returns -126 +*/ +declare const FLOAT32_MIN_BASE2_EXPONENT: number; + + +// EXPORTS // + +export = FLOAT32_MIN_BASE2_EXPONENT; diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/test.ts new file mode 100644 index 000000000000..a2fc74a66463 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/docs/types/test.ts @@ -0,0 +1,28 @@ +/* +* @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. +*/ + +import FLOAT32_MIN_BASE2_EXPONENT = require( './index' ); + + +// TESTS // + +// The export is a number... +{ + // eslint-disable-next-line @typescript-eslint/no-unused-expressions + FLOAT32_MIN_BASE2_EXPONENT; // $ExpectType number +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js new file mode 100644 index 000000000000..fa340c6fafb3 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js @@ -0,0 +1,24 @@ +/** +* @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'; + +var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); + +console.log( FLOAT32_MIN_BASE2_EXPONENT ); +// => -126 diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/include/stdlib/constants/float32/min_base2_exponent.h b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/include/stdlib/constants/float32/min_base2_exponent.h new file mode 100644 index 000000000000..48441143435a --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/include/stdlib/constants/float32/min_base2_exponent.h @@ -0,0 +1,27 @@ +/** +* @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. +*/ + +#ifndef STDLIB_CONSTANTS_FLOAT32_MIN_BASE2_EXPONENT_H +#define STDLIB_CONSTANTS_FLOAT32_MIN_BASE2_EXPONENT_H + +/** +* Macro for the minimum biased base 2 exponent for a normal single-precision floating-point number. +*/ +#define STDLIB_CONSTANT_FLOAT32_MIN_BASE2_EXPONENT -126 + +#endif // !STDLIB_CONSTANTS_FLOAT32_MIN_BASE2_EXPONENT_H diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js new file mode 100644 index 000000000000..54adf8094550 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js @@ -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'; + +/** +* The minimum biased base 2 exponent for a normal single-precision floating-point number. +* +* @module @stdlib/constants/float32/min-base2-exponent +* @type {integer32} +* +* @example +* var FLOAT32_MIN_BASE2_EXPONENT = require( '@stdlib/constants/float32/min-base2-exponent' ); +* // returns -126 +*/ + + +// MAIN // + +/** +* The minimum biased base 2 exponent for a normal single-precision floating-point number. +* +* ```text +* 1 - BIAS = -126 +* ``` +* +* where `BIAS = 127`. +* +* @constant +* @type {integer32} +* @default -126 +* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} +*/ +var FLOAT32_MIN_BASE2_EXPONENT = -126|0; // asm type annotation + + +// EXPORTS // + +module.exports = FLOAT32_MIN_BASE2_EXPONENT; diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/manifest.json b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/manifest.json new file mode 100644 index 000000000000..844d692f6439 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/manifest.json @@ -0,0 +1,36 @@ +{ + "options": {}, + "fields": [ + { + "field": "src", + "resolve": true, + "relative": true + }, + { + "field": "include", + "resolve": true, + "relative": true + }, + { + "field": "libraries", + "resolve": false, + "relative": false + }, + { + "field": "libpath", + "resolve": true, + "relative": false + } + ], + "confs": [ + { + "src": [], + "include": [ + "./include" + ], + "libraries": [], + "libpath": [], + "dependencies": [] + } + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/package.json b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/package.json new file mode 100644 index 000000000000..e9246b630c30 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/package.json @@ -0,0 +1,71 @@ +{ + "name": "@stdlib/constants/float32/min-base2-exponent", + "version": "0.0.0", + "description": "The minimum biased base 2 exponent for a normal single-precision floating-point number.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "doc": "./docs", + "example": "./examples", + "include": "./include", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "constant", + "const", + "mathematics", + "math", + "single", + "flt", + "floating-point", + "float", + "ieee754", + "bias", + "exponent", + "min", + "minimum", + "binary", + "normal", + "base 2" + ] +} diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js new file mode 100644 index 000000000000..d4ae2661bda4 --- /dev/null +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js @@ -0,0 +1,38 @@ +/** +* @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 tape = require( 'tape' ); +var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a number', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof FLOAT32_MIN_BASE2_EXPONENT, 'number', 'main export is a number' ); + t.end(); +}); + +tape( 'the exported value is `-126`', function test( t ) { + t.equal( FLOAT32_MIN_BASE2_EXPONENT, -126, 'equals -126' ); + t.end(); +}); From 8cfa13343e7d0f0cd6d1e563f77047cb1e9bb688 Mon Sep 17 00:00:00 2001 From: GUNJ JOSHI Date: Mon, 28 Oct 2024 23:27:19 +0530 Subject: [PATCH 3/3] feat: add constants/float32/min-base2-exponent --- .../constants/float32/min-base2-exponent/examples/index.js | 2 +- .../@stdlib/constants/float32/min-base2-exponent/lib/index.js | 2 +- .../@stdlib/constants/float32/min-base2-exponent/test/test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js index fa340c6fafb3..337c53796fad 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/examples/index.js @@ -18,7 +18,7 @@ 'use strict'; -var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); +var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); // eslint-disable-line id-length console.log( FLOAT32_MIN_BASE2_EXPONENT ); // => -126 diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js index 54adf8094550..1c5b7c997fc6 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/lib/index.js @@ -46,7 +46,7 @@ * @default -126 * @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985} */ -var FLOAT32_MIN_BASE2_EXPONENT = -126|0; // asm type annotation +var FLOAT32_MIN_BASE2_EXPONENT = -126|0; // eslint-disable-line id-length // EXPORTS // diff --git a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js index d4ae2661bda4..17da6b1382c7 100644 --- a/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js +++ b/lib/node_modules/@stdlib/constants/float32/min-base2-exponent/test/test.js @@ -21,7 +21,7 @@ // MODULES // var tape = require( 'tape' ); -var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); +var FLOAT32_MIN_BASE2_EXPONENT = require( './../lib' ); // eslint-disable-line id-length // TESTS //