Skip to content

Commit e4a53d5

Browse files
authored
docs: update related packages sections
PR-URL: #4399 Reviewed-by: Athan Reines <[email protected]>
1 parent 259b682 commit e4a53d5

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

lib/node_modules/@stdlib/constants/float32/min-base2-exponent/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@ Macro for the minimum biased base 2 exponent for a normal [single-precision floa
124124

125125
<section class="related">
126126

127+
* * *
128+
129+
## See Also
130+
131+
- <span class="package-name">[`@stdlib/constants/float32/min-base2-exponent-subnormal`][@stdlib/constants/float32/min-base2-exponent-subnormal]</span><span class="delimiter">: </span><span class="description">the minimum biased base 2 exponent for a subnormal single-precision floating-point number.</span>
132+
- <span class="package-name">[`@stdlib/constants/float64/min-base2-exponent`][@stdlib/constants/float64/min-base2-exponent]</span><span class="delimiter">: </span><span class="description">the minimum biased base 2 exponent for a normal double-precision floating-point number.</span>
133+
127134
</section>
128135

129136
<!-- /.related -->
@@ -136,6 +143,10 @@ Macro for the minimum biased base 2 exponent for a normal [single-precision floa
136143

137144
<!-- <related-links> -->
138145

146+
[@stdlib/constants/float32/min-base2-exponent-subnormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/min-base2-exponent-subnormal
147+
148+
[@stdlib/constants/float64/min-base2-exponent]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float64/min-base2-exponent
149+
139150
<!-- </related-links> -->
140151

141152
</section>

lib/node_modules/@stdlib/lapack/base/dlassq/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
2525
<section class="intro">
2626

27-
This routine returns the values $s_{textrm{out}}$ and $\textrm{ss}_{\textrm{out}}$ such that
27+
This routine returns the values $s_{textrm{out}}$ and $\\textrm{ss}_{\\textrm{out}}$ such that
2828

2929
<!-- <equation class="equation" label="eq:sum_of_squares" align="center" raw="s_{\textrm{out}}^2 \cdot \textrm{ss}_{\textrm{out}} = x_0^2 + \ldots + x_{N-1}^2 + s_{\textrm{in}}^2 \cdot \textrm{ss}_{\textrm{in}}" alt="Sum of squares represented in scaled form"> -->
3030

@@ -35,7 +35,7 @@ This routine returns the values $s_{textrm{out}}$ and $\textrm{ss}_{\textrm{out}
3535

3636
<!-- </equation> -->
3737

38-
where $x_i = X_{(i-1) \cdot \textrm{sx}}$ and $\textrm{sx}$ is the stride of `X`. The value of $\textrm{ss}_{\textrm{in}}$ is assumed to be nonnegative.
38+
where $x_i = X_{(i-1) \\cdot \\textrm{sx}}$ and $\\textrm{sx}$ is the stride of `X`. The value of $\\textrm{ss}\_{\\textrm{in}}$ is assumed to be nonnegative.
3939

4040
</section>
4141

lib/node_modules/@stdlib/ndarray/to-json/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ for ( i = 0; i < 20; i++ ) {
140140

141141
<section class="related">
142142

143+
* * *
144+
145+
## See Also
146+
147+
- <span class="package-name">[`@stdlib/ndarray/array`][@stdlib/ndarray/array]</span><span class="delimiter">: </span><span class="description">multidimensional arrays.</span>
148+
- <span class="package-name">[`@stdlib/ndarray/ctor`][@stdlib/ndarray/ctor]</span><span class="delimiter">: </span><span class="description">multidimensional array constructor.</span>
149+
- <span class="package-name">[`@stdlib/ndarray/to-array`][@stdlib/ndarray/to-array]</span><span class="delimiter">: </span><span class="description">convert an ndarray to a generic array.</span>
150+
143151
</section>
144152

145153
<!-- /.related -->
@@ -150,6 +158,14 @@ for ( i = 0; i < 20; i++ ) {
150158

151159
[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor
152160

161+
<!-- <related-links> -->
162+
163+
[@stdlib/ndarray/array]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/array
164+
165+
[@stdlib/ndarray/to-array]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/to-array
166+
167+
<!-- </related-links> -->
168+
153169
</section>
154170

155171
<!-- /.links -->

lib/node_modules/@stdlib/string/base/lowercase/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,13 @@ str = lowercase( '' );
8282

8383
<section class="related">
8484

85+
* * *
86+
87+
## See Also
88+
89+
- <span class="package-name">[`@stdlib/string/base/snakecase`][@stdlib/string/base/snakecase]</span><span class="delimiter">: </span><span class="description">convert a string to snake case.</span>
90+
- <span class="package-name">[`@stdlib/string/base/uppercase`][@stdlib/string/base/uppercase]</span><span class="delimiter">: </span><span class="description">convert a string to uppercase.</span>
91+
8592
</section>
8693

8794
<!-- /.related -->
@@ -90,6 +97,14 @@ str = lowercase( '' );
9097

9198
<section class="links">
9299

100+
<!-- <related-links> -->
101+
102+
[@stdlib/string/base/snakecase]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/snakecase
103+
104+
[@stdlib/string/base/uppercase]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/base/uppercase
105+
106+
<!-- </related-links> -->
107+
93108
</section>
94109

95110
<!-- /.links -->

0 commit comments

Comments
 (0)