You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/ndarray/smeanpw/README.md
+148-1Lines changed: 148 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
@license Apache-2.0
4
4
5
-
Copyright (c) 2025 The Stdlib Authors.
5
+
Copyright (c) 2026 The Stdlib Authors.
6
6
7
7
Licensed under the Apache License, Version 2.0 (the "License");
8
8
you may not use this file except in compliance with the License.
@@ -111,6 +111,153 @@ console.log( v );
111
111
112
112
<!-- /.examples -->
113
113
114
+
<!-- C interface documentation. -->
115
+
116
+
* * *
117
+
118
+
<sectionclass="c">
119
+
120
+
## C APIs
121
+
122
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
123
+
124
+
<sectionclass="intro">
125
+
126
+
</section>
127
+
128
+
<!-- /.intro -->
129
+
130
+
<!-- C usage documentation. -->
131
+
132
+
<sectionclass="usage">
133
+
134
+
### Usage
135
+
136
+
```c
137
+
#include"stdlib/stats/base/ndarray/smeanpw.h"
138
+
```
139
+
140
+
#### stdlib_stats_smeanpw( arrays )
141
+
142
+
Computes the arithmetic mean of a one-dimensional single-precision floating-point ndarray using pairwise summation.
"<!@(node -p \"var manifest = require('./manifest.json'); var arr = manifest.include; var len = arr.length; var sep = require( 'path' ).sep; var out = ''; var i; for ( i = 0; i < len; i++ ) { if ( i > 0 ) { out += ' '; } out += arr[ i ].replace( /\\\\/g, sep ); } out;\")"
91
+
92
+
# C specific compiler flags:
93
+
'cflags_c': [
94
+
# Specify the C standard to which a program is expected to conform:
95
+
'-std=c99',
19
96
],
20
-
"defines": [
21
-
"STDLIB_NDARRAY_STRICT_SINGLE_INDEXING_MODE"
97
+
98
+
# C++ specific compiler flags:
99
+
'cflags_cpp': [
100
+
# Specify the C++ standard to which a program is expected to conform:
0 commit comments