Skip to content

Commit b16c129

Browse files
chore: add header
1 parent 36885c1 commit b16c129

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

lib/node_modules/@stdlib/stats/strided/wasm/dmeanvar/examples/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ function main() {
4040
// Perform computation:
4141
var v = dmeanvar.ndarray( N, 1, x, 1, 0, out, 1, 0 );
4242

43+
var bool = ( v === out );
44+
4345
// Print the result:
44-
console.log( v );
46+
console.log( bool );
4547
}
4648

4749
main();

lib/node_modules/@stdlib/stats/strided/wasm/dmeanvar/examples/little_endian_arrays.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ function main() {
6262
// Perform computation:
6363
var v = mod.ndarray( N, 1, x, 1, 0, out, 1, 0 );
6464

65+
var bool = ( v === out );
66+
6567
// Print the result:
66-
console.log( v );
68+
console.log( bool );
6769
}
6870

6971
main();

lib/node_modules/@stdlib/stats/strided/wasm/dmeanvar/examples/module.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ function main() {
6060
// Perform computation:
6161
var v = mod.ndarray( N, 1, xptr, 1, 0, out, 1, 0 );
6262

63+
var bool = ( v === out );
64+
6365
// Print the result:
64-
console.log( v );
66+
console.log( bool );
6567
}
6668

6769
main();

lib/node_modules/@stdlib/stats/strided/wasm/dmeanvar/src/main.wat

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
;; @license Apache-2.0
2+
;;
3+
;; Copyright (c) 2025 The Stdlib Authors.
4+
;;
5+
;; Licensed under the Apache License, Version 2.0 (the "License");
6+
;; you may not use this file except in compliance with the License.
7+
;; You may obtain a copy of the License at
8+
;;
9+
;; http://www.apache.org/licenses/LICENSE-2.0
10+
;;
11+
;; Unless required by applicable law or agreed to in writing, software
12+
;; distributed under the License is distributed on an "AS IS" BASIS,
13+
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
;; See the License for the specific language governing permissions and
15+
;; limitations under the License.
16+
117
(module
218
(type (;0;) (func (param i32 f64 i32 i32 i32 i32 i32 i32)))
319
(type (;1;) (func))

0 commit comments

Comments
 (0)