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
The `N` and `stride` parameters determine which elements in `x` and `y` are accessed at runtime. For example, to compute the cumulative minimum absolute value of every other element in `x`,
61
+
The `N` and stride parameters determine which elements in the strided arrays are accessed at runtime. For example, to compute the cumulative minimum absolute value of every other element in `x`,
@@ -108,7 +108,7 @@ The function has the following additional parameters:
108
108
-**offsetX**: starting index for `x`.
109
109
-**offsetY**: starting index for `y`.
110
110
111
-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, `offsetX` and `offsetY`parameters support indexing semantics based on a starting indices. For example, to calculate the cumulative minimum absolute value of every other value in `x` starting from the second value and to store in the last `N` elements of `y` starting from the last element
111
+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on a starting indices. For example, to calculate the cumulative minimum absolute value of every other element in `x` starting from the second element and to store in the last `N` elements of `y` starting from the last element
var dcuminabs =require( '@stdlib/stats/base/dcuminabs' );
148
147
149
-
var y;
150
-
var x;
151
-
var i;
152
-
153
-
x =newFloat64Array( 10 );
154
-
y =newFloat64Array( x.length );
155
-
for ( i =0; i <x.length; i++ ) {
156
-
x[ i ] =round( (randu()*100.0) -50.0 );
157
-
}
148
+
var x =discreteUniform( 10, -50, 50, {
149
+
'dtype':'float64'
150
+
});
158
151
console.log( x );
152
+
153
+
var y =newFloat64Array( x.length );
159
154
console.log( y );
160
155
161
156
dcuminabs( x.length, x, 1, y, -1 );
@@ -166,6 +161,132 @@ console.log( y );
166
161
167
162
<!-- /.examples -->
168
163
164
+
<!-- C interface documentation. -->
165
+
166
+
* * *
167
+
168
+
<sectionclass="c">
169
+
170
+
## C APIs
171
+
172
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
173
+
174
+
<sectionclass="intro">
175
+
176
+
</section>
177
+
178
+
<!-- /.intro -->
179
+
180
+
<!-- C usage documentation. -->
181
+
182
+
<sectionclass="usage">
183
+
184
+
### Usage
185
+
186
+
```c
187
+
#include"stdlib/stats/base/dcuminabs.h"
188
+
```
189
+
190
+
#### stdlib_strided_dcuminabs( N, \*X, strideX, \*Y, strideY )
191
+
192
+
Computes the cumulative minumum absolute value of double-precision floating-point strided array elements.
0 commit comments