@stdlib/assert-is-float64matrix-like 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +41 -2
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# isFloat64MatrixLike
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Test if a value is a 2-dimensional [ndarray][@stdlib/ndarray/ctor]-like object containing double-precision floating-point numbers.
|
|
26
26
|
|
|
@@ -91,6 +91,24 @@ out = isFloat64MatrixLike( null );
|
|
|
91
91
|
|
|
92
92
|
<!-- /.examples -->
|
|
93
93
|
|
|
94
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
95
|
+
|
|
96
|
+
<section class="related">
|
|
97
|
+
|
|
98
|
+
* * *
|
|
99
|
+
|
|
100
|
+
## See Also
|
|
101
|
+
|
|
102
|
+
- <span class="package-name">[`@stdlib/assert/is-float32matrix-like`][@stdlib/assert/is-float32matrix-like]</span><span class="delimiter">: </span><span class="description">test if a value is a 2-dimensional ndarray-like object containing single-precision floating-point numbers.</span>
|
|
103
|
+
- <span class="package-name">[`@stdlib/assert/is-ndarray-like`][@stdlib/assert/is-ndarray-like]</span><span class="delimiter">: </span><span class="description">test if a value is ndarray-like.</span>
|
|
104
|
+
- <span class="package-name">[`@stdlib/assert/is-matrix-like`][@stdlib/assert/is-matrix-like]</span><span class="delimiter">: </span><span class="description">test if a value is a 2-dimensional ndarray-like object.</span>
|
|
105
|
+
|
|
106
|
+
</section>
|
|
107
|
+
|
|
108
|
+
<!-- /.related -->
|
|
109
|
+
|
|
110
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
111
|
+
|
|
94
112
|
|
|
95
113
|
<section class="main-repo" >
|
|
96
114
|
|
|
@@ -115,7 +133,7 @@ See [LICENSE][stdlib-license].
|
|
|
115
133
|
|
|
116
134
|
## Copyright
|
|
117
135
|
|
|
118
|
-
Copyright © 2016-
|
|
136
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
119
137
|
|
|
120
138
|
</section>
|
|
121
139
|
|
|
@@ -134,9 +152,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
134
152
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-float64matrix-like/main.svg
|
|
135
153
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-float64matrix-like?branch=main
|
|
136
154
|
|
|
155
|
+
<!--
|
|
156
|
+
|
|
137
157
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-float64matrix-like.svg
|
|
138
158
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-float64matrix-like/main
|
|
139
159
|
|
|
160
|
+
-->
|
|
161
|
+
|
|
162
|
+
[umd]: https://github.com/umdjs/umd
|
|
163
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
164
|
+
|
|
165
|
+
[deno-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/deno
|
|
166
|
+
[umd-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/umd
|
|
167
|
+
[esm-url]: https://github.com/stdlib-js/assert-is-float64matrix-like/tree/esm
|
|
168
|
+
|
|
140
169
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
141
170
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
142
171
|
|
|
@@ -148,6 +177,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
148
177
|
|
|
149
178
|
[@stdlib/ndarray/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-ctor
|
|
150
179
|
|
|
180
|
+
<!-- <related-links> -->
|
|
181
|
+
|
|
182
|
+
[@stdlib/assert/is-float32matrix-like]: https://www.npmjs.com/package/@stdlib/assert-is-float32matrix-like
|
|
183
|
+
|
|
184
|
+
[@stdlib/assert/is-ndarray-like]: https://www.npmjs.com/package/@stdlib/assert-is-ndarray-like
|
|
185
|
+
|
|
186
|
+
[@stdlib/assert/is-matrix-like]: https://www.npmjs.com/package/@stdlib/assert-is-matrix-like
|
|
187
|
+
|
|
188
|
+
<!-- </related-links> -->
|
|
189
|
+
|
|
151
190
|
</section>
|
|
152
191
|
|
|
153
192
|
<!-- /.links -->
|
package/package.json
CHANGED