You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/is-same-complex128/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# isSameComplex128
22
22
23
-
> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
23
+
> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].
24
24
25
25
<sectionclass="usage">
26
26
@@ -32,7 +32,7 @@ var isSameComplex128 = require( '@stdlib/assert/is-same-complex128' );
32
32
33
33
#### isSameComplex128( v1, v2 )
34
34
35
-
Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
35
+
Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].
36
36
37
37
```javascript
38
38
var Complex128 =require( '@stdlib/complex/float64/ctor' );
@@ -107,7 +107,7 @@ out = isSameComplex128( x, y );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/assert/is-same-complex64/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# isSameComplex64
22
22
23
-
> Test if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32] and have the [same value][@stdlib/assert/is-same-value].
23
+
> Test if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32/ctor] and have the [same value][@stdlib/assert/is-same-value].
24
24
25
25
<sectionclass="usage">
26
26
@@ -32,7 +32,7 @@ var isSameComplex64 = require( '@stdlib/assert/is-same-complex64' );
32
32
33
33
#### isSameComplex64( v1, v2 )
34
34
35
-
Tests if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32] and have the [same value][@stdlib/assert/is-same-value].
35
+
Tests if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32/ctor] and have the [same value][@stdlib/assert/is-same-value].
36
36
37
37
```javascript
38
38
var Complex64 =require( '@stdlib/complex/float32/ctor' );
@@ -107,7 +107,7 @@ out = isSameComplex64( x, y );
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,8 +50,8 @@ The namespace constains complex number constructors.
50
50
- <spanclass="signature">[`complexCtors( dtype )`][@stdlib/complex/ctors]</span><spanclass="delimiter">: </span><spanclass="description">complex number constructors.</span>
51
51
- <spanclass="signature">[`complexDataType( value )`][@stdlib/complex/dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the data type of a complex number.</span>
52
52
- <spanclass="signature">[`complexDataTypes()`][@stdlib/complex/dtypes]</span><spanclass="delimiter">: </span><spanclass="description">list of complex number data types.</span>
- <spanclass="signature">[`complexPromotionRules( [dtype1, dtype2] )`][@stdlib/complex/promotion-rules]</span><spanclass="delimiter">: </span><spanclass="description">return the complex number data type with the smallest size and closest "kind" to which data types can be **safely** cast.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/cmplx/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,10 +49,10 @@ var z = complex( 5.0, 3.0 );
49
49
// returns <Complex128>
50
50
```
51
51
52
-
By default, the function returns a [128-bit complex number][@stdlib/complex/float64]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
52
+
By default, the function returns a [128-bit complex number][@stdlib/complex/float64/ctor]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
53
53
54
-
-[`'float64'`][@stdlib/complex/float64]: store **real** and **imaginary** components as double-precision floating-point numbers.
55
-
-[`'float32'`][@stdlib/complex/float32]: store **real** and **imaginary** components as single-precision floating-point numbers.
54
+
-[`'float64'`][@stdlib/complex/float64/ctor]: store **real** and **imaginary** components as double-precision floating-point numbers.
55
+
-[`'float32'`][@stdlib/complex/float32/ctor]: store **real** and **imaginary** components as single-precision floating-point numbers.
0 commit comments