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
## `[[stdlib_experimental_io(module):open(function)]]` - open a file
41
41
42
42
### Description
43
43
44
44
Returns the unit number of a file opened to read, to write, or to read and write. The file might be a text file or a binary file. All files are opened using a streamed access.
Copy file name to clipboardExpand all lines: doc/specs/stdlib_experimental_quadrature.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,17 @@ title: experimental_quadrature
6
6
7
7
[TOC]
8
8
9
-
## `trapz` - integrate sampled values using trapezoidal rule
9
+
## `[[stdlib_experimental_quadrature(module):trapz(interface)]]` - integrate sampled values using trapezoidal rule
10
10
11
11
### Description
12
12
13
13
Returns the trapezoidal rule integral of an array `y` representing discrete samples of a function. The integral is computed assuming either equidistant abscissas with spacing `dx` or arbitary abscissas `x`.
## `trapz_weights` - trapezoidal rule weights for given abscissas
50
+
## `[[stdlib_experimental_quadrature(module):trapz_weights(interface)]]` - trapezoidal rule weights for given abscissas
51
51
52
52
### Description
53
53
54
54
Given an array of abscissas `x`, computes the array of weights `w` such that if `y` represented function values tabulated at `x`, then `sum(w*y)` produces a trapezoidal rule approximation to the integral.
Copy file name to clipboardExpand all lines: doc/specs/stdlib_experimental_stats.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ title: experimental_stats
6
6
7
7
[TOC]
8
8
9
-
## `cov` - covariance of array elements
9
+
## `[[stdlib_experimental_stats(module):cov(interface)]]` - covariance of array elements
10
10
11
11
### Description
12
12
@@ -25,7 +25,7 @@ The scaling can be changed with the logical argument `corrected`. If `corrected`
25
25
26
26
### Syntax
27
27
28
-
`result = cov(array, dim [, mask [, corrected]])`
28
+
`result = [[stdlib_experimental_stats(module):cov(interface)]](array, dim [, mask [, corrected]])`
29
29
30
30
### Arguments
31
31
@@ -62,17 +62,17 @@ program demo_cov
62
62
end program demo_cov
63
63
```
64
64
65
-
## `mean` - mean of array elements
65
+
## `[[stdlib_experimental_stats(module):mean(interface)]]` - mean of array elements
66
66
67
67
### Description
68
68
69
69
Returns the mean of all the elements of `array`, or of the elements of `array` along dimension `dim` if provided, and if the corresponding element in `mask` is `true`.
0 commit comments