Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ f(z) = z
```

<!-- <div class="equation" align="center" data-raw-text="f(z) = z" data-equation="eq:identity_function">
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@3ac3ef7b03afae265d5c85a664dc22e0a373c0c2/lib/node_modules/@stdlib/math/base/special/cidentity/docs/img/equation_identity_function.svg" alt="Identity function">
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@3ac3ef7b03afae265d5c85a664dc22e0a373c0c2/lib/node_modules/@stdlib/complex/float64/base/identity/docs/img/equation_identity_function.svg" alt="Identity function">
<br>
</div> -->

Expand All @@ -50,7 +50,7 @@ for all `z`.
## Usage

```javascript
var cidentity = require( '@stdlib/math/base/special/cidentity' );
var cidentity = require( '@stdlib/complex/float64/base/identity' );
```

#### cidentity( z )
Expand Down Expand Up @@ -87,7 +87,7 @@ var im = imag( v );
```javascript
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var cidentity = require( '@stdlib/math/base/special/cidentity' );
var cidentity = require( '@stdlib/complex/float64/base/identity' );

var z;
var i;
Expand Down Expand Up @@ -124,10 +124,10 @@ for ( i = 0; i < 100; i++ ) {
### Usage

```c
#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
```

#### stdlib_base_cidentity( z )
#### stdlib_base_complex128_identity( z )

Evaluates the identity function for a double-precision complex floating-point number.

Expand All @@ -137,7 +137,7 @@ Evaluates the identity function for a double-precision complex floating-point nu
#include "stdlib/complex/float64/imag.h"

stdlib_complex128_t z = stdlib_complex128( 2.5, -1.5 );
stdlib_complex128_t out = stdlib_base_cidentity( z );
stdlib_complex128_t out = stdlib_base_complex128_identity( z );

double re = stdlib_complex128_real( out );
// returns 2.5
Expand All @@ -151,7 +151,7 @@ The function accepts the following arguments:
- **z**: `[in] stdlib_complex128_t` input value.

```c
stdlib_complex128_t stdlib_base_cidentity( const stdlib_complex128_t z );
stdlib_complex128_t stdlib_base_complex128_identity( const stdlib_complex128_t z );
```

</section>
Expand All @@ -173,7 +173,7 @@ stdlib_complex128_t stdlib_base_cidentity( const stdlib_complex128_t z );
### Examples

```c
#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/complex/float64/reim.h"
#include <stdio.h>
Expand All @@ -195,7 +195,7 @@ int main() {
int i;
for ( i = 0; i < 4; i++ ) {
v = x[ i ];
y = stdlib_base_cidentity( v );
y = stdlib_base_complex128_identity( v );
stdlib_complex128_reim( v, &re1, &im1 );
stdlib_complex128_reim( y, &re2, &im2 );
printf( "cidentity(%lf + %lfi) = %lf + %lfi\n", re1, im1, re2, im2 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/complex/float64/reim.h"
#include <stdlib.h>
Expand Down Expand Up @@ -106,7 +106,7 @@ static double benchmark( void ) {
for ( i = 0; i < ITERATIONS; i++ ) {
v = ( 1000.0*rand_double() ) - 500.0;
x = stdlib_complex128( v, v );
y = stdlib_base_cidentity( x );
y = stdlib_base_complex128_identity( x );
stdlib_complex128_reim( y, &re, &im );
if ( re != re ) {
printf( "unexpected result\n" );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/complex/float64/reim.h"
#include <stdio.h>
Expand All @@ -38,7 +38,7 @@ int main( void ) {
int i;
for ( i = 0; i < 4; i++ ) {
v = x[ i ];
y = stdlib_base_cidentity( v );
y = stdlib_base_complex128_identity( v );
stdlib_complex128_reim( v, &re1, &im1 );
stdlib_complex128_reim( y, &re2, &im2 );
printf( "cidentity(%lf + %lfi) = %lf + %lfi\n", re1, im1, re2, im2 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* limitations under the License.
*/

#ifndef STDLIB_MATH_BASE_SPECIAL_CIDENTITY_H
#define STDLIB_MATH_BASE_SPECIAL_CIDENTITY_H
#ifndef STDLIB_COMPLEX_FLOAT64_BASE_IDENTITY_H
#define STDLIB_COMPLEX_FLOAT64_BASE_IDENTITY_H

#include "stdlib/complex/float64/ctor.h"

Expand All @@ -31,10 +31,10 @@ extern "C" {
/**
* Evaluates the identity function for a double-precision complex floating-point number.
*/
stdlib_complex128_t stdlib_base_cidentity( const stdlib_complex128_t z );
stdlib_complex128_t stdlib_base_complex128_identity( const stdlib_complex128_t z );

#ifdef __cplusplus
}
#endif

#endif // !STDLIB_MATH_BASE_SPECIAL_CIDENTITY_H
#endif // !STDLIB_COMPLEX_FLOAT64_BASE_IDENTITY_H
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
/**
* Evaluate the identity function for a double-precision complex floating-point number.
*
* @module @stdlib/math/base/special/cidentity
* @module @stdlib/complex/float64/base/identity
*
* @example
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
* var cidentity = require( '@stdlib/math/base/special/cidentity' );
* var cidentity = require( '@stdlib/complex/float64/base/identity' );
*
* var v = cidentity( new Complex128( -1.0, 2.0 ) );
* // returns <Complex128>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@stdlib/math/base/special/cidentity",
"name": "@stdlib/complex/float64/base/identity",
"version": "0.0.0",
"description": "Evaluate the identity function for a double-precision complex floating-point number.",
"license": "Apache-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* limitations under the License.
*/

#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
#include "stdlib/math/base/napi/unary.h"

// cppcheck-suppress shadowFunction
STDLIB_MATH_BASE_NAPI_MODULE_Z_Z( stdlib_base_cidentity )
STDLIB_MATH_BASE_NAPI_MODULE_Z_Z( stdlib_base_complex128_identity )
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

#include "stdlib/math/base/special/cidentity.h"
#include "stdlib/complex/float64/base/identity.h"
#include "stdlib/complex/float64/ctor.h"

/**
Expand All @@ -31,7 +31,7 @@
* #include "stdlib/complex/float64/imag.h"
*
* stdlib_complex128_t z = stdlib_complex128( 3.0, 3.0 );
* stdlib_complex128_t out = stdlib_base_cidentity( z );
* stdlib_complex128_t out = stdlib_base_complex128_identity( z );
*
* double re = stdlib_complex128_real( out );
* // returns 3.0
Expand All @@ -40,6 +40,6 @@
* // returns 3.0

*/
stdlib_complex128_t stdlib_base_cidentity( const stdlib_complex128_t z ) {
stdlib_complex128_t stdlib_base_complex128_identity( const stdlib_complex128_t z ) {
return z;
}
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ var fcns = special;
- <span class="signature">[`cexp( z )`][@stdlib/math/base/special/cexp]</span><span class="delimiter">: </span><span class="description">evaluate the exponential function for a double-precision complex floating-point number.</span>
- <span class="signature">[`cflipsign( z, y )`][@stdlib/math/base/special/cflipsign]</span><span class="delimiter">: </span><span class="description">return a double-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.</span>
- <span class="signature">[`cflipsignf( z, y )`][@stdlib/math/base/special/cflipsignf]</span><span class="delimiter">: </span><span class="description">return a single-precision complex floating-point number with the same magnitude as `z` and the sign of `y*z`.</span>
- <span class="signature">[`cidentity( z )`][@stdlib/math/base/special/cidentity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a double-precision complex floating-point number.</span>
- <span class="signature">[`cidentity( z )`][@stdlib/complex/float64/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a double-precision complex floating-point number.</span>
- <span class="signature">[`cidentityf( z )`][@stdlib/math/base/special/cidentityf]</span><span class="delimiter">: </span><span class="description">evaluate the identity function of a single-precision complex floating-point number.</span>
- <span class="signature">[`cinv( z )`][@stdlib/math/base/special/cinv]</span><span class="delimiter">: </span><span class="description">compute the inverse of a double-precision complex floating-point number.</span>
- <span class="signature">[`copysign( x, y )`][@stdlib/math/base/special/copysign]</span><span class="delimiter">: </span><span class="description">return a double-precision floating-point number with the magnitude of `x` and the sign of `y`.</span>
Expand Down Expand Up @@ -480,7 +480,7 @@ console.log( objectKeys( special ) );

[@stdlib/math/base/special/cflipsignf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cflipsignf

[@stdlib/math/base/special/cidentity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cidentity
[@stdlib/complex/float64/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/identity

[@stdlib/math/base/special/cidentityf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cidentityf

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ int main( void ) {

## See Also

- <span class="package-name">[`@stdlib/math/base/special/cidentity`][@stdlib/math/base/special/cidentity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function for a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/float64/base/identity`][@stdlib/complex/float64/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function for a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/number/float32/base/identity`][@stdlib/number/float32/base/identity]</span><span class="delimiter">: </span><span class="description">evaluate the identity function for a single-precision floating-point number.</span>

</section>
Expand All @@ -214,7 +214,7 @@ int main( void ) {

<!-- <related-links> -->

[@stdlib/math/base/special/cidentity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cidentity
[@stdlib/complex/float64/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/identity

[@stdlib/number/float32/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/number/float32/base/identity

Expand Down
23 changes: 0 additions & 23 deletions lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ import cflipsign = require( '@stdlib/math/base/special/cflipsign' );
import cflipsignf = require( '@stdlib/math/base/special/cflipsignf' );
import cfloor = require( '@stdlib/math/base/special/cfloor' );
import cfloorn = require( '@stdlib/math/base/special/cfloorn' );
import cidentity = require( '@stdlib/math/base/special/cidentity' );
import cidentityf = require( '@stdlib/math/base/special/cidentityf' );
import cinv = require( '@stdlib/math/base/special/cinv' );
import clamp = require( '@stdlib/math/base/special/clamp' );
Expand Down Expand Up @@ -2403,28 +2402,6 @@ interface Namespace {
*/
cfloorn: typeof cfloorn;

/**
* Evaluates the identity function for double-precision complex floating-point number.
*
* @param z - input value
* @returns input value
*
* @example
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var real = require( '@stdlib/complex/float64/real' );
* var imag = require( '@stdlib/complex/float64/imag' );
*
* var v = ns.cidentity( new Complex128( -1.0, 2.0 ) );
* // returns <Complex128>
*
* var re = real( v );
* // returns -1.0
*
* var im = imag( v );
* // returns 2.0
*/
cidentity: typeof cidentity;

/**
* Evaluates the identity function for single-precision complex floating-point number.
*
Expand Down
9 changes: 0 additions & 9 deletions lib/node_modules/@stdlib/math/base/special/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

'use strict';

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`cfloorf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`aversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`avercosf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`atandf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`ahaversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`ahavercosf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`acoversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`acovercosf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`acotdf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

`acosdf` should be exported from namespace `index.js`

/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
Expand Down Expand Up @@ -720,15 +720,6 @@
*/
setReadOnly( special, 'cfloorn', require( '@stdlib/math/base/special/cfloorn' ) );

/**
* @name cidentity
* @memberof special
* @readonly
* @type {Function}
* @see {@link module:@stdlib/math/base/special/cidentity}
*/
setReadOnly( special, 'cidentity', require( '@stdlib/math/base/special/cidentity' ) );

/**
* @name cidentityf
* @memberof special
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ base.cflipsign,"@stdlib/math/base/special/cflipsign"
base.cflipsignf,"@stdlib/math/base/special/cflipsignf"
base.cfloor,"@stdlib/math/base/special/cfloor"
base.cfloorn,"@stdlib/math/base/special/cfloorn"
base.cidentity,"@stdlib/math/base/special/cidentity"
base.cidentity,"@stdlib/complex/float64/base/identity"
base.cidentityf,"@stdlib/math/base/special/cidentityf"
base.cinv,"@stdlib/math/base/special/cinv"
base.clamp,"@stdlib/math/base/special/clamp"
Expand Down

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/namespace/lib/namespace/base/c.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ ns.push({

ns.push({
'alias': 'base.cidentity',
'path': '@stdlib/math/base/special/cidentity',
'value': require( '@stdlib/math/base/special/cidentity' ),
'path': '@stdlib/complex/float64/base/identity',
'value': require( '@stdlib/complex/float64/base/identity' ),
'type': 'Function',
'related': [
'@stdlib/math/base/special/cidentityf',
Expand All @@ -363,7 +363,7 @@ ns.push({
'value': require( '@stdlib/math/base/special/cidentityf' ),
'type': 'Function',
'related': [
'@stdlib/math/base/special/cidentity',
'@stdlib/complex/float64/base/identity',
'@stdlib/number/float32/base/identity'
]
});
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
"@stdlib/math/base/special/cflipsignf",base.cflipsignf
"@stdlib/math/base/special/cfloor",base.cfloor
"@stdlib/math/base/special/cfloorn",base.cfloorn
"@stdlib/math/base/special/cidentity",base.cidentity
"@stdlib/complex/float64/base/identity",base.cidentity
"@stdlib/math/base/special/cidentityf",base.cidentityf
"@stdlib/math/base/special/cinv",base.cinv
"@stdlib/math/base/special/clamp",base.clamp
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@
"@stdlib/math/base/special/cflipsignf","@stdlib/complex/float32/base/neg,@stdlib/math/base/special/cflipsign"
"@stdlib/math/base/special/cfloor","@stdlib/math/base/special/cceil,@stdlib/math/base/special/cfloorn,@stdlib/math/base/special/cround"
"@stdlib/math/base/special/cfloorn","@stdlib/math/base/special/cceiln,@stdlib/math/base/special/cfloor,@stdlib/math/base/special/croundn"
"@stdlib/math/base/special/cidentity","@stdlib/math/base/special/cidentityf,@stdlib/number/float64/base/identity"
"@stdlib/math/base/special/cidentityf","@stdlib/math/base/special/cidentity,@stdlib/number/float32/base/identity"
"@stdlib/complex/float64/base/identity","@stdlib/math/base/special/cidentityf,@stdlib/number/float64/base/identity"
"@stdlib/math/base/special/cidentityf","@stdlib/complex/float64/base/identity,@stdlib/number/float32/base/identity"
"@stdlib/math/base/special/cinv","@stdlib/complex/float64/base/div"
"@stdlib/math/base/special/clamp","@stdlib/math/base/special/clampf,@stdlib/math/base/special/wrap"
"@stdlib/math/base/special/clampf","@stdlib/math/base/special/clamp"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
"@stdlib/math/base/special/cflipsignf","@stdlib/math-base-special-cflipsignf"
"@stdlib/math/base/special/cfloor","@stdlib/math-base-special-cfloor"
"@stdlib/math/base/special/cfloorn","@stdlib/math-base-special-cfloorn"
"@stdlib/math/base/special/cidentity","@stdlib/math-base-special-cidentity"
"@stdlib/complex/float64/base/identity","@stdlib/math-base-special-cidentity"
"@stdlib/math/base/special/cidentityf","@stdlib/math-base-special-cidentityf"
"@stdlib/math/base/special/cinv","@stdlib/math-base-special-cinv"
"@stdlib/math/base/special/clamp","@stdlib/math-base-special-clamp"
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@
"@stdlib/math-base-special-cflipsignf","@stdlib/math/base/special/cflipsignf"
"@stdlib/math-base-special-cfloor","@stdlib/math/base/special/cfloor"
"@stdlib/math-base-special-cfloorn","@stdlib/math/base/special/cfloorn"
"@stdlib/math-base-special-cidentity","@stdlib/math/base/special/cidentity"
"@stdlib/math-base-special-cidentity","@stdlib/complex/float64/base/identity"
"@stdlib/math-base-special-cidentityf","@stdlib/math/base/special/cidentityf"
"@stdlib/math-base-special-cinv","@stdlib/math/base/special/cinv"
"@stdlib/math-base-special-clamp","@stdlib/math/base/special/clamp"
Expand Down

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/strided/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ interface Namespace {
* @example
* var signatures = require( '@stdlib/strided/base/mskunary-dtype-signatures' );
* var identity = require( '@stdlib/number/float64/base/identity' );
* var cidentity = require( '@stdlib/math/base/special/cidentity' );
* var cidentity = require( '@stdlib/complex/float64/base/identity' );
* var cidentityf = require( '@stdlib/math/base/special/cidentityf' );
*
* var dtypes = [
Expand Down Expand Up @@ -1623,7 +1623,7 @@ interface Namespace {
* @example
* var signatures = require( '@stdlib/strided/base/unary-dtype-signatures' );
* var identity = require( '@stdlib/number/float64/base/identity' );
* var cidentity = require( '@stdlib/math/base/special/cidentity' );
* var cidentity = require( '@stdlib/complex/float64/base/identity' );
* var cidentityf = require( '@stdlib/math/base/special/cidentityf' );
*
* var dtypes = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench' );
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pow = require( '@stdlib/math/base/special/pow' );
var cidentity = require( '@stdlib/math/base/special/cidentity' );
var cidentity = require( '@stdlib/complex/float64/base/identity' );
var Complex128Array = require( '@stdlib/array/complex128' );
var real = require( '@stdlib/complex/float64/real' );
var imag = require( '@stdlib/complex/float64/imag' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench' );
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var pow = require( '@stdlib/math/base/special/pow' );
var cidentity = require( '@stdlib/math/base/special/cidentity' );
var cidentity = require( '@stdlib/complex/float64/base/identity' );
var Complex128Array = require( '@stdlib/array/complex128' );
var real = require( '@stdlib/complex/float64/real' );
var imag = require( '@stdlib/complex/float64/imag' );
Expand Down
Loading