Skip to content

docs: add the missing header in blas/ext/base/dsnannsumors #3263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/blas/ext/base/dsnannsumors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ console.log( out );
Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.

```c
#include "stdlib/blas/base/shared.h"

const float x[] = { 1.0f, -2.0f, 0.0f/0.0f, 2.0f };
CBLAS_INT n = 0;

Expand All @@ -225,6 +227,8 @@ double stdlib_strided_dsnannsumors( const CBLAS_INT N, const float *X, const CBL
Computes the sum of single-precision floating-point strided array elements, ignoring `NaN` values, using ordinary recursive summation with extended accumulation and alternative indexing semantics, and returning an extended precision result.

```c
#include "stdlib/blas/base/shared.h"

const float x[] = { 1.0f, -2.0f, 0.0f/0.0f, 2.0f };
CBLAS_INT n = 0;

Expand Down