-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e23d573
commit 60b2761
Showing
12 changed files
with
698 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<!-- | ||
@license Apache-2.0 | ||
Copyright (c) 2024 The Stdlib Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
# hasEqualShape | ||
|
||
> Test if two ndarrays have the same shape. | ||
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> | ||
|
||
<section class="intro"> | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<!-- Package usage documentation. --> | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var hasEqualShape = require( '@stdlib/ndarray/base/assert/has-equal-shape' ); | ||
``` | ||
|
||
#### hasEqualShape( x, y ) | ||
|
||
Tests if two ndarrays have the same shape. | ||
|
||
```javascript | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ 1, 2, 3, 4 ] ); | ||
var y = array( [ 5, 6, 7, 8 ] ); | ||
|
||
var bool = hasEqualShape( x, y ); | ||
// returns true | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="notes"> | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<!-- Package usage examples. --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var array = require( '@stdlib/ndarray/array' ); | ||
var hasEqualShape = require( '@stdlib/ndarray/base/assert/has-equal-shape' ); | ||
|
||
var x1 = array( [ [ 1, 2 ], [ 3, 4 ] ] ); | ||
var y1 = array( [ [ 5, 6 ], [ 7, 8 ] ] ); | ||
|
||
var bool = hasEqualShape( x1, y1 ); | ||
// returns true | ||
|
||
var x2 = array( [ [ 1, 2 ], [ 3, 4 ] ] ); | ||
var y2 = array( [ [ 5, 6 ], [ 7, 8 ], [ 9, 10 ] ] ); | ||
|
||
bool = hasEqualShape( x2, y2 ); | ||
// returns false | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="references"> | ||
|
||
</section> | ||
|
||
<!-- /.references --> | ||
|
||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
||
<section class="related"> | ||
|
||
</section> | ||
|
||
<!-- /.related --> | ||
|
||
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="links"> | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/** | ||
* @license Apache-2.0 | ||
* | ||
* Copyright (c) 2024 The Stdlib Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
// MODULES // | ||
|
||
var bench = require( '@stdlib/bench' ); | ||
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive; | ||
var array = require( './../../../../array' ); | ||
var pkg = require( './../package.json' ).name; | ||
var hasEqualShape = require( './../lib' ); | ||
|
||
|
||
// MAIN // | ||
|
||
bench( pkg+'::true', function benchmark( b ) { | ||
var values; | ||
var out; | ||
var v; | ||
var i; | ||
|
||
values = [ | ||
array( [ [ 1, 2 ], [ 3, 4 ] ] ), | ||
array( [ [ 1, 2 ], [ 3, 4 ] ] ) | ||
]; | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
v = values[ i%values.length ]; | ||
out = hasEqualShape( v, v ); | ||
if ( typeof out !== 'boolean' ) { | ||
b.fail( 'should return a boolean' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( !isBoolean( out ) ) { | ||
b.fail( 'should return a boolean' ); | ||
} | ||
b.pass( 'benchmark finished' ); | ||
b.end(); | ||
}); | ||
|
||
bench( pkg+'::false', function benchmark( b ) { | ||
var values; | ||
var out; | ||
var v1; | ||
var v2; | ||
var i; | ||
|
||
values = [ | ||
array( [ [ 1, 2 ], [ 3, 4 ] ] ), | ||
array( [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] ) | ||
]; | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
v1 = values[ i%values.length ]; | ||
v2 = values[ (i+1)%values.length ]; | ||
out = hasEqualShape( v1, v2 ); | ||
if ( typeof out !== 'boolean' ) { | ||
b.fail( 'should return a boolean' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( !isBoolean( out ) ) { | ||
b.fail( 'should return a boolean' ); | ||
} | ||
b.pass( 'benchmark finished' ); | ||
b.end(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
{{alias}}( x, y ) | ||
Tests if two ndarrays have the same shape. | ||
|
||
Parameters | ||
---------- | ||
x: ndarray | ||
First input ndarray. | ||
|
||
y: ndarray | ||
Second input ndarray. | ||
|
||
Returns | ||
------- | ||
bool: boolean | ||
Boolean indicating if both ndarrays have the same shape. | ||
|
||
Examples | ||
-------- | ||
> var x = {{alias:@stdlib/ndarray/array}}( [ 1, 2, 3, 4 ] ); | ||
> var y = {{alias:@stdlib/ndarray/array}}( [ 5, 6, 7, 8 ] ); | ||
> var bool = {{alias}}( x, y ) | ||
true | ||
|
||
See Also | ||
-------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* @license Apache-2.0 | ||
* | ||
* Copyright (c) 2024 The Stdlib Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// TypeScript Version: 4.1 | ||
|
||
/// <reference types="@stdlib/types"/> | ||
|
||
import { ndarray } from '@stdlib/types/ndarray'; | ||
|
||
/** | ||
* Tests whether two ndarrays have the same shape. | ||
* | ||
* @param x - first input ndarray | ||
* @param y - second input ndarray | ||
* @returns boolean indicating whether two ndarrays have the same shape | ||
* | ||
* @example | ||
* var array = require( '@stdlib/ndarray/array' ); | ||
* | ||
* var x = array( [ [ 1, 2 ], [ 3, 4 ] ] ); | ||
* var y = array( [ [ 5, 6 ], [ 7, 8 ] ] ); | ||
* | ||
* var bool = hasEqualShape( x, y ); | ||
* // returns true | ||
*/ | ||
declare function hasEqualShape( x: ndarray, y: ndarray ): boolean; | ||
|
||
|
||
// EXPORTS // | ||
|
||
export = hasEqualShape; |
Oops, something went wrong.