@@ -15,16 +15,16 @@ module stdlib_quadrature
15
15
16
16
17
17
interface trapz
18
- !! version: experimental
19
- !!
18
+ !! version: experimental
19
+ !!
20
20
!! Integrates sampled values using trapezoidal rule
21
21
!! ([Specification](../page/specs/stdlib_quadrature.html#description))
22
22
#:for k1, t1 in REAL_KINDS_TYPES
23
23
pure module function trapz_dx_${k1}$(y, dx) result(integral)
24
24
${t1}$, dimension(:), intent(in) :: y
25
25
${t1}$, intent(in) :: dx
26
26
${t1}$ :: integral
27
- end function trapz_dx_${k1}$
27
+ end function trapz_dx_${k1}$
28
28
#:endfor
29
29
#:for k1, t1 in REAL_KINDS_TYPES
30
30
module function trapz_x_${k1}$(y, x) result(integral)
@@ -37,8 +37,8 @@ module stdlib_quadrature
37
37
38
38
39
39
interface trapz_weights
40
- !! version: experimental
41
- !!
40
+ !! version: experimental
41
+ !!
42
42
!! Integrates sampled values using trapezoidal rule weights for given abscissas
43
43
!! ([Specification](../page/specs/stdlib_quadrature.html#description_1))
44
44
#:for k1, t1 in REAL_KINDS_TYPES
@@ -51,8 +51,8 @@ module stdlib_quadrature
51
51
52
52
53
53
interface simps
54
- !! version: experimental
55
- !!
54
+ !! version: experimental
55
+ !!
56
56
!! Integrates sampled values using Simpson's rule
57
57
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
58
58
! "recursive" is an implementation detail
@@ -76,8 +76,8 @@ module stdlib_quadrature
76
76
77
77
78
78
interface simps_weights
79
- !! version: experimental
80
- !!
79
+ !! version: experimental
80
+ !!
81
81
!! Integrates sampled values using trapezoidal rule weights for given abscissas
82
82
!! ([Specification](../page/specs/stdlib_quadrature.html#description_3))
83
83
#:for k1, t1 in REAL_KINDS_TYPES
0 commit comments