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 1f51a53 commit 5c4ffe4Copy full SHA for 5c4ffe4
lib/node_modules/@stdlib/math/base/ops/README.md
@@ -67,20 +67,9 @@ The namespace contains the following functions:
67
<!-- eslint no-undef: "error" -->
68
69
```javascript
70
-var Complex128 = require( '@stdlib/complex/float64/ctor' );
71
var ns = require( '@stdlib/math/base/ops' );
72
73
-console.log( ns.sub( 1.25, 0.45 ) );
74
-// => 0.8
75
-
76
-console.log( ns.divf( 1.2, 0.4 ) );
77
-// => 3.0
78
79
-// Operations for complex numbers:
80
-var z1 = new Complex128( 5.0, 3.0 );
81
-var z2 = new Complex128( -2.0, 1.0 );
82
-console.log( ns.cmul( z1, z2 ) ); // { 're': -13.0, 'im': -1.0 }
83
-// => <Complex128>
+console.log( ns );
84
```
85
86
</section>
0 commit comments