From 6c9d648e791e8d93ba896b3c616145def6dcd35f Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 20 Dec 2024 00:56:36 +0530 Subject: [PATCH 01/12] feat: add-betaprime-mode --- .../stats/base/dists/betaprime/mode/README.md | 113 ++++++++++++ .../mode/benchmark/benchmark.native.js | 63 +++++++ .../dists/betaprime/mode/benchmark/c/Makefile | 146 +++++++++++++++ .../betaprime/mode/benchmark/c/benchmark.c | 138 ++++++++++++++ .../base/dists/betaprime/mode/binding.gyp | 170 ++++++++++++++++++ .../dists/betaprime/mode/examples/c/Makefile | 146 +++++++++++++++ .../dists/betaprime/mode/examples/c/example.c | 36 ++++ .../base/dists/betaprime/mode/include.gypi | 53 ++++++ .../stdlib/stats/base/dists/betaprime/mode.h | 38 ++++ .../base/dists/betaprime/mode/lib/native.js | 74 ++++++++ .../base/dists/betaprime/mode/manifest.json | 75 ++++++++ .../base/dists/betaprime/mode/package.json | 3 + .../base/dists/betaprime/mode/src/Makefile | 70 ++++++++ .../base/dists/betaprime/mode/src/addon.c | 23 +++ .../base/dists/betaprime/mode/src/main.c | 70 ++++++++ .../dists/betaprime/mode/test/test.native.js | 119 ++++++++++++ 16 files changed, 1337 insertions(+) create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/manifest.json create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/Makefile create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/addon.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c create mode 100644 lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/test/test.native.js diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index 470a8db2387b..d69087f18a7f 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -144,6 +144,119 @@ for ( i = 0; i < 10; i++ ) { + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/stats/base/dists/betaprime/mode.h" +``` + +#### stdlib_base_dists_betaprime_mode( alpha, beta ) + +Evaluates the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. + +```c +double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); +//returns ~0.0 + +y = stdlib_base_dists_betaprime_mode( 4.0, 12.0 ); +// returns ~0.231 + +y = stdlib_base_dists_betaprime_mode( 8.0, 2.0 ); +// returns ~2.333 + +y = stdlib_base_dists_betaprime_mode( 1.0, 1.0 ); +// returns ~0.0 + +y = stdlib_base_dists_betaprime_mode( 1.0, -0.1 ); +// returns NaN + +y = stdlib_base_dists_betaprime_mode( -0.1, 1.0 ); +// returns NaN + +y = stdlib_base_dists_betaprime_mode( 2.0, NaN ); +// returns NaN + +y = stdlib_base_dists_betaprime_mode( NaN, 2.0 ); +// returns NaN +``` + +The function accepts the following arguments: + +- **alpha**: `[in] double` first shape parameter +- **beta**: `[in] double` second shape parameter + +```c +double stdlib_base_dists_betaprime_mode( const double alpha, const double beta ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/stats/base/dists/betaprime/mode.h" +#include "stdlib/constants/float64/eps.h" +#include +#include + +int main( void ) { + double alpha; + double beta; + double y; + int i; + + for ( i = 0; i < 10; i++ ) { + alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; + y = stdlib_base_dists_betaprime_mode( alpha, beta ); + printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); + } +} +``` + +
+ + + +
+ + +
diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js new file mode 100644 index 000000000000..be9b9f8ef0b1 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js @@ -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/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var mode = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( mode instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var alpha; + var beta; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + alpha = ( randu()*10.0 ) + EPS; + beta = ( randu()*10.0 ) + EPS; + y = mode( alpha, beta ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile new file mode 100644 index 000000000000..0ebf4545e1a9 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @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. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean \ No newline at end of file diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c new file mode 100644 index 000000000000..a2e9bd0fc02a --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c @@ -0,0 +1,138 @@ +/** +* @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. +*/ + +#include "stdlib/stats/base/dists/betaprime/mode.h" +#include "stdlib/constants/float64/eps.h" +#include +#include +#include +#include +#include + +#define NAME "betaprime-mode" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [min,max). +* +* @param min minimum value (inclusive) +* @param max maximum value (exclusive) +* @return random number +*/ +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double elapsed; + double alpha; + double beta; + double y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + y = stdlib_base_dists_betaprime_mode( alpha, beta ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp new file mode 100644 index 000000000000..507cb00291e7 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp @@ -0,0 +1,170 @@ +# @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. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile new file mode 100644 index 000000000000..d53ef397c77d --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @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. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean \ No newline at end of file diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c new file mode 100644 index 000000000000..0db995343e30 --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c @@ -0,0 +1,36 @@ +/** +* @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. +*/ + +#include "stdlib/stats/base/dists/betaprime/mode.h" +#include "stdlib/constants/float64/eps.h" +#include +#include + +int main( void ) { + double alpha; + double beta; + double y; + int i; + + for ( i = 0; i < 10; i++ ) { + alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; + y = stdlib_base_dists_betaprime_mode( alpha, beta ); + printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); + } +} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi new file mode 100644 index 000000000000..c6495fc1da3f --- /dev/null +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi @@ -0,0 +1,53 @@ +# @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. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '= 1.0 ) ? ( alpha-1.0 ) / ( beta+1.0 ) : 0.0; + t.strictEqual( y, expected, 'returns mode' ); + } + t.end(); +}); From c09c8926446f48df2e7373f812f7e43c49122e2e Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 20 Dec 2024 01:05:05 +0530 Subject: [PATCH 02/12] fix: CI errors --- .../@stdlib/stats/base/dists/betaprime/mode/src/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c index e19941f4ec69..ebd968eebadd 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c @@ -1,5 +1,3 @@ - file line number Original file line Diff line number Diff line change -@@ -0,0 +1,65 @@ /** * @license Apache-2.0 * From b99e64bdbcb5b1a29d47b40e957bdaf2d951380c Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 20 Dec 2024 01:12:26 +0530 Subject: [PATCH 03/12] fix: CI errors --- .../@stdlib/stats/base/dists/betaprime/mode/lib/native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js index 406786f85e3b..3b5dbff9b1d4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js @@ -71,4 +71,4 @@ function mode( alpha, beta ) { // EXPORTS // -module.exports = mode; \ No newline at end of file +module.exports = mode; From 0db1ecb663e5eb8b66a07a6c401b1fd6f3040359 Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 20 Dec 2024 11:26:46 +0530 Subject: [PATCH 04/12] fix: lint errors --- .../stats/base/dists/betaprime/mode/README.md | 23 +-------------- .../betaprime/mode/benchmark/c/benchmark.c | 28 +++++++++---------- .../dists/betaprime/mode/examples/c/example.c | 18 ++++++------ .../base/dists/betaprime/mode/lib/native.js | 7 +++-- .../base/dists/betaprime/mode/src/main.c | 11 ++++---- 5 files changed, 34 insertions(+), 53 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index d69087f18a7f..ee3c29c58b0f 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -177,27 +177,6 @@ Evaluates the mode for a beta prime distribution with first shape parameter `alp ```c double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); //returns ~0.0 - -y = stdlib_base_dists_betaprime_mode( 4.0, 12.0 ); -// returns ~0.231 - -y = stdlib_base_dists_betaprime_mode( 8.0, 2.0 ); -// returns ~2.333 - -y = stdlib_base_dists_betaprime_mode( 1.0, 1.0 ); -// returns ~0.0 - -y = stdlib_base_dists_betaprime_mode( 1.0, -0.1 ); -// returns NaN - -y = stdlib_base_dists_betaprime_mode( -0.1, 1.0 ); -// returns NaN - -y = stdlib_base_dists_betaprime_mode( 2.0, NaN ); -// returns NaN - -y = stdlib_base_dists_betaprime_mode( NaN, 2.0 ); -// returns NaN ``` The function accepts the following arguments: @@ -213,7 +192,7 @@ double stdlib_base_dists_betaprime_mode( const double alpha, const double beta ) -
diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c index a2e9bd0fc02a..a55093a18f39 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c @@ -16,13 +16,13 @@ * limitations under the License. */ -#include "stdlib/stats/base/dists/betaprime/mode.h" +#include #include "stdlib/constants/float64/eps.h" -#include -#include +#include "stdlib/stats/base/dists/betaprime/mode.h" #include +#include +#include #include -#include #define NAME "betaprime-mode" #define ITERATIONS 1000000 @@ -72,7 +72,7 @@ static void print_results( double elapsed ) { static double tic( void ) { struct timeval now; gettimeofday( &now, NULL ); - return (double)now.tv_sec + (double)now.tv_usec/1.0e6; + return (double)now.tv_sec + (double)now.tv_usec / 1.0e6; } /** @@ -83,8 +83,8 @@ static double tic( void ) { * @return random number */ static double random_uniform( const double min, const double max ) { - double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); - return min + ( v*(max-min) ); + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v * ( max - min ) ); } /** @@ -95,16 +95,16 @@ static double random_uniform( const double min, const double max ) { static double benchmark( void ) { double elapsed; double alpha; - double beta; + double beta; double y; double t; int i; t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { - alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - y = stdlib_base_dists_betaprime_mode( alpha, beta ); + alpha = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + beta = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + y = stdlib_base_dists_betaprime_mode( alpha, beta ); if ( y != y ) { printf( "should not return NaN\n" ); break; @@ -124,7 +124,7 @@ int main( void ) { double elapsed; int i; - // Use the current time to seed the random number generator: + // Use the current time to seed the random number generator: srand( time( NULL ) ); print_version(); @@ -132,7 +132,7 @@ int main( void ) { printf( "# c::%s\n", NAME ); elapsed = benchmark(); print_results( elapsed ); - printf( "ok %d benchmark finished\n", i+1 ); + printf( "ok %d benchmark finished\n", i + 1 ); } print_summary( REPEATS, REPEATS ); -} \ No newline at end of file +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c index 0db995343e30..fb654ee94519 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c @@ -16,21 +16,21 @@ * limitations under the License. */ -#include "stdlib/stats/base/dists/betaprime/mode.h" #include "stdlib/constants/float64/eps.h" -#include +#include "stdlib/stats/base/dists/betaprime/mode.h" #include +#include int main( void ) { - double alpha; - double beta; + double alpha; + double beta; double y; int i; for ( i = 0; i < 10; i++ ) { - alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; - y = stdlib_base_dists_betaprime_mode( alpha, beta ); - printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); + alpha = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; + beta = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; + y = stdlib_base_dists_betaprime_mode( alpha, beta ); + printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); } -} \ No newline at end of file +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js index 3b5dbff9b1d4..f000f02f12c3 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js @@ -20,7 +20,7 @@ // MODULES // -var addon = require( './../src/addon.node' ); +var addon = require('./../src/addon.node'); // MAIN // @@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' ); /** * Returns the mode of a beta prime distribution. * +* @private * @param {PositiveNumber} alpha - first shape parameter * @param {PositiveNumber} beta - second shape parameter * @returns {PositiveNumber} mode @@ -64,8 +65,8 @@ var addon = require( './../src/addon.node' ); * var v = mode( NaN, 2.0 ); * // returns NaN */ -function mode( alpha, beta ) { - return addon( alpha, beta ); +function mode(alpha, beta) { + return addon(alpha, beta); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c index ebd968eebadd..43e3a9896908 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c @@ -16,14 +16,15 @@ * limitations under the License. */ +#include "stdlib/stats/base/dists/betaprime/mode.h" /** * Evaluates the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. * -* @param x input value +* @param x input value * @param alpha first shape parameter -* @param beta second shape parameter -* @returns evaluated logPDF +* @param beta second shape parameter +* @returns evaluated logPDF * * @example * double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); @@ -58,11 +59,11 @@ * // returns NaN */ double stdlib_base_dists_betaprime_mode( double alpha, const double beta ) { - if ( alpha <= 0.0 || beta <= 0.0 ) { + if ( alpha <= 0.0 || beta <= 0.0 ) { return 0.0 / 0.0; } if ( alpha < 1.0 ) { return 0.0; } return ( alpha - 1.0 ) / ( beta + 1.0 ); -} \ No newline at end of file +} From 658f9173587632b55bc5e5142dbd3aa4f68818ec Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 20 Dec 2024 14:50:47 +0530 Subject: [PATCH 05/12] fix: lint errors --- .../@stdlib/stats/base/dists/betaprime/mode/lib/native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js index f000f02f12c3..6bdb516713c1 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js @@ -20,7 +20,7 @@ // MODULES // -var addon = require('./../src/addon.node'); +var addon = require( './../src/addon.node' ); // MAIN // From c035eb89e814b8620b8f31711d8ec95d91b1704c Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 17 Jan 2025 23:58:35 +0530 Subject: [PATCH 06/12] chore: clean up --- .../stats/base/dists/betaprime/mode/README.md | 15 ++++++++---- .../betaprime/mode/benchmark/benchmark.js | 18 +++++++++++---- .../mode/benchmark/benchmark.native.js | 18 +++++++++++---- .../dists/betaprime/mode/benchmark/c/Makefile | 2 +- .../betaprime/mode/benchmark/c/benchmark.c | 23 +++++++++++-------- .../base/dists/betaprime/mode/binding.gyp | 2 +- .../dists/betaprime/mode/examples/c/Makefile | 2 +- .../dists/betaprime/mode/examples/c/example.c | 9 ++++++-- .../base/dists/betaprime/mode/include.gypi | 2 +- .../stdlib/stats/base/dists/betaprime/mode.h | 4 ++-- .../base/dists/betaprime/mode/lib/native.js | 4 ++-- .../base/dists/betaprime/mode/manifest.json | 2 +- .../base/dists/betaprime/mode/src/Makefile | 2 +- .../base/dists/betaprime/mode/src/addon.c | 2 +- .../base/dists/betaprime/mode/src/main.c | 2 +- 15 files changed, 71 insertions(+), 36 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index ee3c29c58b0f..f003357d0b80 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -172,7 +172,7 @@ for ( i = 0; i < 10; i++ ) { #### stdlib_base_dists_betaprime_mode( alpha, beta ) -Evaluates the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. +Returns the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. ```c double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); @@ -208,10 +208,15 @@ element and another before the `/section` close. --> ### Examples ```c -#include "stdlib/stats/base/dists/betaprime/mode.h" #include "stdlib/constants/float64/eps.h" -#include +#include "stdlib/stats/base/dists/betaprime/mode.h" #include +#include + +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} int main( void ) { double alpha; @@ -220,8 +225,8 @@ int main( void ) { int i; for ( i = 0; i < 10; i++ ) { - alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - beta = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; + alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 ); + beta = random_uniform( 1.0 + STDLIB_CONSTANT_FLOAT64_EPS, 11.0 ); y = stdlib_base_dists_betaprime_mode( alpha, beta ); printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js index 321ec08e6201..e5135e33db35 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js @@ -21,7 +21,8 @@ // MODULES // var bench = require( '@stdlib/bench' ); -var randu = require( '@stdlib/random/base/randu' ); +var uniform = require( '@stdlib/random/base/uniform' ); +var Float64Array = require( '@stdlib/array/float64' ); var isnan = require( '@stdlib/math/base/assert/is-nan' ); var EPS = require( '@stdlib/constants/float64/eps' ); var pkg = require( './../package.json' ).name; @@ -33,14 +34,23 @@ var mode = require( './../lib' ); bench( pkg, function benchmark( b ) { var alpha; var beta; + var len; var y; var i; + len = 100; + alpha = new Float64Array( len ); + for ( i = 0; i < len; i++ ) { + alpha[ i ] = uniform( EPS, 10.0 ); + } + beta = new Float64Array( len ); + for ( i = 0; i < len; i++ ) { + beta[ i ] = uniform( EPS, 10.0 ); + } + b.tic(); for ( i = 0; i < b.iterations; i++ ) { - alpha = ( randu()*10.0 ) + EPS; - beta = ( randu()*10.0 ) + EPS; - y = mode( alpha, beta ); + y = mode( alpha[ i%100 ], beta[ i%100 ] ); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js index be9b9f8ef0b1..289bfe8e4ac0 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js @@ -22,7 +22,8 @@ var resolve = require( 'path' ).resolve; var bench = require( '@stdlib/bench' ); -var randu = require( '@stdlib/random/base/randu' ); +var uniform = require( '@stdlib/random/base/uniform' ); +var Float64Array = require( '@stdlib/array/float64' ); var isnan = require( '@stdlib/math/base/assert/is-nan' ); var tryRequire = require( '@stdlib/utils/try-require' ); var EPS = require( '@stdlib/constants/float64/eps' ); @@ -42,14 +43,23 @@ var opts = { bench( pkg+'::native', opts, function benchmark( b ) { var alpha; var beta; + var len; var y; var i; + len = 100; + alpha = new Float64Array( len ); + for ( i = 0; i < len; i++ ) { + alpha[ i ] = uniform( EPS, 10.0 ); + } + beta = new Float64Array( len ); + for ( i = 0; i < len; i++ ) { + beta[ i ] = uniform( EPS, 10.0 ); + } + b.tic(); for ( i = 0; i < b.iterations; i++ ) { - alpha = ( randu()*10.0 ) + EPS; - beta = ( randu()*10.0 ) + EPS; - y = mode( alpha, beta ); + y = mode( alpha[ i%100 ], beta[ i%100 ] ); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile index 0ebf4545e1a9..f69e9da2b4d3 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile @@ -143,4 +143,4 @@ run: $(c_targets) clean: $(QUIET) -rm -f *.o *.out -.PHONY: clean \ No newline at end of file +.PHONY: clean diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c index a55093a18f39..4b811d207435 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c @@ -16,13 +16,13 @@ * limitations under the License. */ -#include -#include "stdlib/constants/float64/eps.h" #include "stdlib/stats/base/dists/betaprime/mode.h" -#include -#include +#include "stdlib/constants/float64/eps.h" #include +#include +#include #include +#include #define NAME "betaprime-mode" #define ITERATIONS 1000000 @@ -94,17 +94,22 @@ static double random_uniform( const double min, const double max ) { */ static double benchmark( void ) { double elapsed; - double alpha; - double beta; + double alpha[ 100 ]; + double beta[ 100 ]; double y; double t; int i; + for ( i = 0; i < 100; i++ ) { + alpha[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 ); + } + for ( i = 0; i < 100; i++ ) { + beta[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 ); + } + t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { - alpha = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - beta = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - y = stdlib_base_dists_betaprime_mode( alpha, beta ); + y = stdlib_base_dists_betaprime_mode( alpha[ i%100 ], beta[ i%100 ] ); if ( y != y ) { printf( "should not return NaN\n" ); break; diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp index 507cb00291e7..ec3992233442 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp @@ -167,4 +167,4 @@ ], # end actions }, # end target copy_addon ], # end targets -} \ No newline at end of file +} diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile index d53ef397c77d..6aed70daf167 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile @@ -143,4 +143,4 @@ run: $(c_targets) clean: $(QUIET) -rm -f *.o *.out -.PHONY: clean \ No newline at end of file +.PHONY: clean diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c index fb654ee94519..009637ee49ef 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c @@ -21,6 +21,11 @@ #include #include +static double random_uniform( const double min, const double max ) { + double v = (double)rand() / ( (double)RAND_MAX + 1.0 ); + return min + ( v*(max-min) ); +} + int main( void ) { double alpha; double beta; @@ -28,8 +33,8 @@ int main( void ) { int i; for ( i = 0; i < 10; i++ ) { - alpha = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS; - beta = ( ( (double)rand() / (double)RAND_MAX ) * 10.0 ) + 1.0 + STDLIB_CONSTANT_FLOAT64_EPS; + alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 ); + beta = random_uniform( 1.0 + STDLIB_CONSTANT_FLOAT64_EPS, 11.0 ); y = stdlib_base_dists_betaprime_mode( alpha, beta ); printf( "α: %1f, β: %1f, Mode(X;α,β): %lf\n", alpha, beta, y ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi index c6495fc1da3f..575cb043c0bf 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi @@ -50,4 +50,4 @@ ' Date: Sat, 18 Jan 2025 00:09:44 +0530 Subject: [PATCH 07/12] fix: lint errors --- .../stats/base/dists/betaprime/mode/benchmark/c/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c index 4b811d207435..232018f01977 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c @@ -129,7 +129,7 @@ int main( void ) { double elapsed; int i; - // Use the current time to seed the random number generator: + // Use the current time to seed the random number generator: srand( time( NULL ) ); print_version(); From aa93239d36d1e14af49e7008f39f376f4007b170 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Fri, 17 Jan 2025 18:42:52 +0000 Subject: [PATCH 08/12] chore: update copyright years --- .../base/dists/betaprime/mode/benchmark/benchmark.native.js | 2 +- .../stats/base/dists/betaprime/mode/benchmark/c/Makefile | 2 +- .../stats/base/dists/betaprime/mode/benchmark/c/benchmark.c | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/binding.gyp | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile | 2 +- .../stats/base/dists/betaprime/mode/examples/c/example.c | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/include.gypi | 2 +- .../mode/include/stdlib/stats/base/dists/betaprime/mode.h | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/lib/native.js | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/src/Makefile | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/src/addon.c | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/src/main.c | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/test/test.native.js | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js index 289bfe8e4ac0..f09b17e799ba 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile index f69e9da2b4d3..a4bd7b38fd74 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c index 232018f01977..17a5a89fc627 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/c/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp index ec3992233442..68a1ca11d160 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/binding.gyp @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile index 6aed70daf167..25ced822f96a 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c index 009637ee49ef..7562d10c2ff8 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi index 575cb043c0bf..ecfaf82a3279 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include.gypi @@ -1,6 +1,6 @@ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h index 3c6bbaabf66e..fd4ca07b3e84 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js index d7f111463aee..e47b8b201eec 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/lib/native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/Makefile b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/Makefile index bcf18aa46655..7733b6180cb4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/Makefile +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2024 The Stdlib Authors. +# Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/addon.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/addon.c index f0a5dcd77e18..10de5c140d7a 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/addon.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/addon.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c index e8653510c556..18cb6a6df14e 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/test/test.native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/test/test.native.js index 9b45cd2d87f5..62f20c158040 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/test/test.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/test/test.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 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. From cd4fa38b32493e44f6b68998e5e4c097b079acb4 Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 31 Jan 2025 22:46:57 +0530 Subject: [PATCH 09/12] chore: minor updates --- .../@stdlib/stats/base/dists/betaprime/mode/README.md | 2 +- .../stats/base/dists/betaprime/mode/benchmark/benchmark.js | 2 +- .../base/dists/betaprime/mode/benchmark/benchmark.native.js | 2 +- .../stats/base/dists/betaprime/mode/examples/c/example.c | 2 +- .../mode/include/stdlib/stats/base/dists/betaprime/mode.h | 2 +- .../@stdlib/stats/base/dists/betaprime/mode/src/main.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index f003357d0b80..1ab456f3ff90 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -172,7 +172,7 @@ for ( i = 0; i < 10; i++ ) { #### stdlib_base_dists_betaprime_mode( alpha, beta ) -Returns the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. +Returns the mode of a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. ```c double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js index e5135e33db35..cc8f2a1661c5 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.js @@ -50,7 +50,7 @@ bench( pkg, function benchmark( b ) { b.tic(); for ( i = 0; i < b.iterations; i++ ) { - y = mode( alpha[ i%100 ], beta[ i%100 ] ); + y = mode( alpha[ i % len ], beta[ i % len ] ); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js index f09b17e799ba..8c233bd86988 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/benchmark/benchmark.native.js @@ -59,7 +59,7 @@ bench( pkg+'::native', opts, function benchmark( b ) { b.tic(); for ( i = 0; i < b.iterations; i++ ) { - y = mode( alpha[ i%100 ], beta[ i%100 ] ); + y = mode( alpha[ i % len ], beta[ i % len ] ); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c index 7562d10c2ff8..a4cb73ec918b 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/examples/c/example.c @@ -16,8 +16,8 @@ * limitations under the License. */ -#include "stdlib/constants/float64/eps.h" #include "stdlib/stats/base/dists/betaprime/mode.h" +#include "stdlib/constants/float64/eps.h" #include #include diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h index fd4ca07b3e84..cef65f617a68 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/include/stdlib/stats/base/dists/betaprime/mode.h @@ -27,7 +27,7 @@ extern "C" { #endif /** -* Returns the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. +* Returns the mode of a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. */ double stdlib_base_dists_betaprime_mode( const double alpha, const double beta ); diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c index 18cb6a6df14e..3905b33f855a 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c @@ -19,7 +19,7 @@ #include "stdlib/stats/base/dists/betaprime/mode.h" /** -* Returns the mode for a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. +* Returns the mode of a beta prime distribution with first shape parameter `alpha` and second shape parameter `beta`. * * @param x input value * @param alpha first shape parameter From e96e673f9d805ad13b21f8266c2c6fa6f07fcefb Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 5 Feb 2025 08:42:52 -0500 Subject: [PATCH 10/12] chore: apply suggestions from code review Signed-off-by: Philipp Burckhardt --- .../base/dists/betaprime/mode/src/main.c | 30 +------------------ 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c index 3905b33f855a..c57fc5308ad9 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/src/main.c @@ -24,39 +24,11 @@ * @param x input value * @param alpha first shape parameter * @param beta second shape parameter -* @returns evaluated logPDF +* @returns mode * * @example * double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); * // returns ~0.0 -* -* @example -* double y = stdlib_base_dists_betaprime_mode( 4.0, 12.0 ); -* // returns ~0.231 -* -* @example -* double y = stdlib_base_dists_betaprime_mode( 8.0, 2.0 ); -* // returns ~2.333 -* -* @example -* double y = stdlib_base_dists_betaprime_mode( 1.0, 1.0 ); -* // returns ~0.0 -* -* @example -* double y = stdlib_base_dists_betaprime_mode( 1.0, -0.1 ); -* // returns NaN -* -* @example -* double y = stdlib_base_dists_betaprime_mode( -0.1, 1.0 ); -* // returns NaN -* -* @example -* double y = stdlib_base_dists_betaprime_mode( 2.0, NaN ); -* // returns NaN -* -* @example -* double y = stdlib_base_dists_betaprime_mode( NaN, 2.0 ); -* // returns NaN */ double stdlib_base_dists_betaprime_mode( double alpha, const double beta ) { if ( alpha <= 0.0 || beta <= 0.0 ) { From 5f95137fef309ca7b065674aeaec9b3e42a31b7b Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 5 Feb 2025 08:47:51 -0500 Subject: [PATCH 11/12] chore: add missing periods Signed-off-by: Philipp Burckhardt --- .../@stdlib/stats/base/dists/betaprime/mode/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index 1ab456f3ff90..b748bbbd3c40 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -181,8 +181,8 @@ double y = stdlib_base_dists_betaprime_mode( 1.0, 2.0 ); The function accepts the following arguments: -- **alpha**: `[in] double` first shape parameter -- **beta**: `[in] double` second shape parameter +- **alpha**: `[in] double` first shape parameter. +- **beta**: `[in] double` second shape parameter. ```c double stdlib_base_dists_betaprime_mode( const double alpha, const double beta ); From f4f9a2d03b149f85b31cd61304b297511c92eb34 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 5 Feb 2025 08:56:09 -0500 Subject: [PATCH 12/12] docs: reorder includes Signed-off-by: Philipp Burckhardt --- .../@stdlib/stats/base/dists/betaprime/mode/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md index b748bbbd3c40..fffbda7898e9 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/betaprime/mode/README.md @@ -208,8 +208,8 @@ element and another before the `/section` close. --> ### Examples ```c -#include "stdlib/constants/float64/eps.h" #include "stdlib/stats/base/dists/betaprime/mode.h" +#include "stdlib/constants/float64/eps.h" #include #include