Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 26, 2024
1 parent 59345c9 commit 6ca7171
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

2 changes: 2 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Frank Kovacs <fran70kk@gmail.com>
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
Gunj Joshi <gunjjoshi8372@gmail.com>
Harshita Kalani <harshitakalani02@gmail.com>
Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com>
Jaimin Godhani <112328542+Jai0401@users.noreply.github.com>
James Gelok <jdgelok@gmail.com>
Jaysukh Makvana <jaysukhmakvana2004@gmail.com>
Expand Down Expand Up @@ -84,6 +85,7 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com>
Utkarsh <http://utkarsh11105@gmail.com>
Utkarsh Raj <rajutkarsh2505@gmail.com>
Varad Gupta <varadgupta21@gmail.com>
Xiaochuan Ye <tap91624@gmail.com>
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
naveen <stupiddint@gmail.com>
nishant-s7 <97207366+nishant-s7@users.noreply.github.com>
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ limitations under the License.

[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->

> 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.
<section class="intro">

Expand Down Expand Up @@ -88,10 +88,10 @@ var cidentityf = require( '@stdlib/math-base-special-cidentityf' );

#### cidentityf( z )

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 Complex64 = require( '@stdlib/complex-float32-ctor' );
var real = require( '@stdlib/complex-real' );
var imag = require( '@stdlib/complex-imag' );

Expand All @@ -117,7 +117,7 @@ var im = imag( v );

```javascript
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' );

var z;
Expand Down Expand Up @@ -311,7 +311,7 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].

[identity-function]: https://en.wikipedia.org/wiki/Identity_function

[@stdlib/complex/float32]: https://github.com/stdlib-js/complex-float32
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/complex-float32-ctor

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

Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var bench = require( '@stdlib/bench-harness' );
var uniform = require( '@stdlib/random-base-uniform' );
var isnanf = require( '@stdlib/math-base-assert-is-nanf' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var real = require( '@stdlib/complex-real' );
var imag = require( '@stdlib/complex-imag' );
var pkg = require( './../package.json' ).name;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

Examples
--------
> var v = {{alias}}( new {{alias:@stdlib/complex/float32}}( -1.0, 2.0 ) )
> var v = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( -1.0, 2.0 ) )
<Complex64>
> var re = {{alias:@stdlib/complex/real}}( v )
-1.0
Expand Down
2 changes: 1 addition & 1 deletion docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { Complex64 } from '@stdlib/types/complex';
* @returns input value
*
* @example
* var Complex64 = require( '@stdlib/complex-float32' );
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
* var real = require( '@stdlib/complex-real' );
* var imag = require( '@stdlib/complex-imag' );
*
Expand Down
2 changes: 1 addition & 1 deletion docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

import Complex64 = require( '@stdlib/complex-float32' );
import Complex64 = require( '@stdlib/complex-float32-ctor' );
import cidentityf = require( './index' );


Expand Down
2 changes: 1 addition & 1 deletion examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

var discreteUniform = require( '@stdlib/random-base-discrete-uniform' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var cidentityf = require( './../lib' );

var z;
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @module @stdlib/math-base-special-cidentityf
*
* @example
* var Complex64 = require( '@stdlib/complex-float32' );
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
* var real = require( '@stdlib/complex-real' );
* var imag = require( '@stdlib/complex-imag' );
* var cidentityf = require( '@stdlib/math-base-special-cidentityf' );
Expand Down
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @returns {Complex64} input value
*
* @example
* var Complex64 = require( '@stdlib/complex-float32' );
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
* var real = require( '@stdlib/complex-real' );
* var imag = require( '@stdlib/complex-imag' );
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@stdlib/utils-library-manifest": "^0.2.1"
},
"devDependencies": {
"@stdlib/complex-float32": "^0.2.1",
"@stdlib/complex-float32-ctor": "github:stdlib-js/complex-float32-ctor#main",
"@stdlib/complex-imag": "^0.2.1",
"@stdlib/complex-real": "^0.2.1",
"@stdlib/constants-float32-ninf": "^0.2.1",
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var isNegativeZerof = require( '@stdlib/math-base-assert-is-negative-zerof' );
var isnanf = require( '@stdlib/math-base-assert-is-nanf' );
var PINF = require( '@stdlib/constants-float32-pinf' );
var NINF = require( '@stdlib/constants-float32-ninf' );
var Complex64 = require( '@stdlib/complex-float32' );
var Complex64 = require( '@stdlib/complex-float32-ctor' );
var real = require( '@stdlib/complex-real' );
var imag = require( '@stdlib/complex-imag' );
var cidentityf = require( './../lib' );
Expand Down

0 comments on commit 6ca7171

Please sign in to comment.