We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd0b3a commit ff9f557Copy full SHA for ff9f557
lib/node_modules/@stdlib/complex/float64/base/assert/is-almost-equal-value/lib/index.js
@@ -28,8 +28,8 @@
28
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
29
* var isAlmostEqualValue = require( '@stdlib/complex/float64/base/assert/is-almost-equal-value' );
30
*
31
-* var z1 = new Complex128( 5.0, 3.0 );
32
-* var z2 = new Complex128( 5.0+EPS, 3.0 );
+* var z1 = new Complex128( 1.0, 3.0 );
+* var z2 = new Complex128( 1.0+EPS, 3.0 );
33
34
* var bool = isAlmostEqualValue( z1, z2, 0 );
35
* // returns false
0 commit comments