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/math/base/special/coshf/README.md
-14Lines changed: 0 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,14 +170,6 @@ int main( void ) {
170
170
171
171
<sectionclass="related">
172
172
173
-
* * *
174
-
175
-
## See Also
176
-
177
-
- <spanclass="package-name">[`@stdlib/math/base/special/cosh`][@stdlib/math/base/special/cosh]</span><spanclass="delimiter">: </span><spanclass="description">compute the hyperbolic cosine of a double-precision floating-point number.</span>
178
-
- <spanclass="package-name">[`@stdlib/math/base/special/sinf`][@stdlib/math/base/special/sinf]</span><spanclass="delimiter">: </span><spanclass="description">compute the sine of a single-precision floating-point number.</span>
179
-
- <spanclass="package-name">[`@stdlib/math/base/special/tanf`][@stdlib/math/base/special/tanf]</span><spanclass="delimiter">: </span><spanclass="description">compute the tangent of a single-precision floating-point number.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/cumax/README.md
+5-26Lines changed: 5 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,16 +35,12 @@ var cumax = require( '@stdlib/stats/cumax' );
35
35
Computes the cumulative maximum value along one or more [ndarray][@stdlib/ndarray/ctor] dimensions.
36
36
37
37
```javascript
38
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
39
38
var array =require( '@stdlib/ndarray/array' );
40
39
41
40
var x =array( [ -1.0, 2.0, -3.0 ] );
42
41
43
42
var y =cumax( x );
44
-
// returns <ndarray>
45
-
46
-
var arr =ndarray2array( y );
47
-
// returns [ -1.0, 2.0, 2.0 ]
43
+
// returns <ndarray>[ -1.0, 2.0, 2.0 ]
48
44
```
49
45
50
46
The function has the following parameters:
@@ -60,40 +56,27 @@ The function accepts the following options:
60
56
By default, the function performs the operation over all elements in a provided input [ndarray][@stdlib/ndarray/ctor]. To perform the operation over specific dimensions, provide a `dims` option.
61
57
62
58
```javascript
63
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.
@@ -120,18 +103,14 @@ var dt = String( getDType( y ) );
120
103
Computes the cumulative maximum value along one or more [ndarray][@stdlib/ndarray/ctor] dimensions and assigns results to a provided output [ndarray][@stdlib/ndarray/ctor].
121
104
122
105
```javascript
123
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
124
106
var array =require( '@stdlib/ndarray/array' );
125
107
var zerosLike =require( '@stdlib/ndarray/zeros-like' );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/cumax/docs/types/index.d.ts
+4-20Lines changed: 4 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -65,16 +65,12 @@ interface Unary {
65
65
* @returns output ndarray
66
66
*
67
67
* @example
68
-
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
69
68
* var array = require( '@stdlib/ndarray/array' );
70
69
*
71
70
* var x = array( [ -1.0, 2.0, -3.0 ] );
72
71
*
73
72
* var y = cumax( x );
74
-
* // returns <ndarray>
75
-
*
76
-
* var arr = ndarray2array( y );
77
-
* // returns [ -1.0, 2.0, 2.0 ]
73
+
* // returns <ndarray>[ -1.0, 2.0, 2.0 ]
78
74
*/
79
75
<T=unknown,U=unknown>(x: InputArray<T>,options?: Options): OutputArray<U>;// NOTE: we lose type specificity here, but retaining specificity would likely be difficult and/or tedious to completely enumerate, as the output ndarray data type is dependent on how `x` interacts with output data type policy and whether that policy has been overridden by `options.dtype`.
80
76
@@ -87,21 +83,17 @@ interface Unary {
87
83
* @returns output ndarray
88
84
*
89
85
* @example
90
-
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
91
86
* var zerosLike = require( '@stdlib/ndarray/zeros-like' );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/cumin/README.md
+5-26Lines changed: 5 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,16 +35,12 @@ var cumin = require( '@stdlib/stats/cumin' );
35
35
Computes the cumulative minimum value along one or more [ndarray][@stdlib/ndarray/ctor] dimensions.
36
36
37
37
```javascript
38
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
39
38
var array =require( '@stdlib/ndarray/array' );
40
39
41
40
var x =array( [ -1.0, 2.0, -3.0 ] );
42
41
43
42
var y =cumin( x );
44
-
// returns <ndarray>
45
-
46
-
var arr =ndarray2array( y );
47
-
// returns [ -1.0, -1.0, -3.0 ]
43
+
// returns <ndarray>[ -1.0, -1.0, -3.0 ]
48
44
```
49
45
50
46
The function has the following parameters:
@@ -60,40 +56,27 @@ The function accepts the following options:
60
56
By default, the function performs the operation over all elements in a provided input [ndarray][@stdlib/ndarray/ctor]. To perform the operation over specific dimensions, provide a `dims` option.
61
57
62
58
```javascript
63
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.
@@ -120,18 +103,14 @@ var dt = String( getDType( y ) );
120
103
Computes the cumulative minimum value along one or more [ndarray][@stdlib/ndarray/ctor] dimensions and assigns results to a provided output [ndarray][@stdlib/ndarray/ctor].
121
104
122
105
```javascript
123
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
124
106
var array =require( '@stdlib/ndarray/array' );
125
107
var zerosLike =require( '@stdlib/ndarray/zeros-like' );
0 commit comments