@stdlib/math-base-special-cidentityf
Advanced tools
Comparing version 0.2.1 to 0.2.2
@@ -32,5 +32,5 @@ /* | ||
* @example | ||
* var Complex64 = require( '@stdlib/complex-float32' ); | ||
* var real = require( '@stdlib/complex-real' ); | ||
* var imag = require( '@stdlib/complex-imag' ); | ||
* var Complex64 = require( '@stdlib/complex-float32-ctor' ); | ||
* var real = require( '@stdlib/complex-float32-real' ); | ||
* var imag = require( '@stdlib/complex-float32-imag' ); | ||
* | ||
@@ -37,0 +37,0 @@ * var v = cidentityf( new Complex64( -1.0, 2.0 ) ); |
@@ -27,5 +27,5 @@ /** | ||
* @example | ||
* var Complex64 = require( '@stdlib/complex-float32' ); | ||
* var real = require( '@stdlib/complex-real' ); | ||
* var imag = require( '@stdlib/complex-imag' ); | ||
* var Complex64 = require( '@stdlib/complex-float32-ctor' ); | ||
* var real = require( '@stdlib/complex-float32-real' ); | ||
* var imag = require( '@stdlib/complex-float32-imag' ); | ||
* var cidentityf = require( '@stdlib/math-base-special-cidentityf' ); | ||
@@ -32,0 +32,0 @@ * |
@@ -30,5 +30,5 @@ /** | ||
* @example | ||
* var Complex64 = require( '@stdlib/complex-float32' ); | ||
* var real = require( '@stdlib/complex-real' ); | ||
* var imag = require( '@stdlib/complex-imag' ); | ||
* var Complex64 = require( '@stdlib/complex-float32-ctor' ); | ||
* var real = require( '@stdlib/complex-float32-real' ); | ||
* var imag = require( '@stdlib/complex-float32-imag' ); | ||
* | ||
@@ -35,0 +35,0 @@ * var v = cidentityf( new Complex64( -1.0, 2.0 ) ); |
{ | ||
"name": "@stdlib/math-base-special-cidentityf", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "Evaluate the identity function for a single-precision complex floating-point number.", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -36,3 +36,3 @@ <!-- | ||
> Evaluate the [identity function][identity-function] of a single-precision [complex][@stdlib/complex/float32] floating-point number. | ||
> Evaluate the [identity function][identity-function] of a single-precision [complex][@stdlib/complex/float32/ctor] floating-point number. | ||
@@ -78,8 +78,8 @@ <section class="intro"> | ||
Evaluates the [identity function][identity-function] for a single-precision [complex][@stdlib/complex/float32] floating-point number. | ||
Evaluates the [identity function][identity-function] for a single-precision [complex][@stdlib/complex/float32/ctor] floating-point number. | ||
```javascript | ||
var Complex64 = require( '@stdlib/complex-float32' ); | ||
var real = require( '@stdlib/complex-real' ); | ||
var imag = require( '@stdlib/complex-imag' ); | ||
var Complex64 = require( '@stdlib/complex-float32-ctor' ); | ||
var real = require( '@stdlib/complex-float32-real' ); | ||
var imag = require( '@stdlib/complex-float32-imag' ); | ||
@@ -108,3 +108,3 @@ var v = cidentityf( new Complex64( -1.0, 2.0 ) ); | ||
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ); | ||
var Complex64 = require( '@stdlib/complex-float32' ); | ||
var Complex64 = require( '@stdlib/complex-float32-ctor' ); | ||
var cidentityf = require( '@stdlib/math-base-special-cidentityf' ); | ||
@@ -268,4 +268,4 @@ | ||
[test-image]: https://github.com/stdlib-js/math-base-special-cidentityf/actions/workflows/test.yml/badge.svg?branch=v0.2.1 | ||
[test-url]: https://github.com/stdlib-js/math-base-special-cidentityf/actions/workflows/test.yml?query=branch:v0.2.1 | ||
[test-image]: https://github.com/stdlib-js/math-base-special-cidentityf/actions/workflows/test.yml/badge.svg?branch=v0.2.2 | ||
[test-url]: https://github.com/stdlib-js/math-base-special-cidentityf/actions/workflows/test.yml?query=branch:v0.2.2 | ||
@@ -304,3 +304,3 @@ [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-base-special-cidentityf/main.svg | ||
[@stdlib/complex/float32]: https://www.npmjs.com/package/@stdlib/complex-float32 | ||
[@stdlib/complex/float32/ctor]: https://www.npmjs.com/package/@stdlib/complex-float32-ctor | ||
@@ -307,0 +307,0 @@ <!-- <related-links> --> |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34319