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
var out =cdotc.ndarray( cx.length, cx, 1, 0, cy, -1, cy.length-1 );
147
+
// Perform dot product of x and y
148
+
var out =cdotc.ndarray( x.length, x, 1, 0, y, -1, y.length-1 );
181
149
console.log( out );
182
150
```
183
151
@@ -189,15 +157,6 @@ console.log( out );
189
157
190
158
<sectionclass="related">
191
159
192
-
* * *
193
-
194
-
## See Also
195
-
196
-
- <spanclass="package-name">[`@stdlib/blas/base/zdotc`][@stdlib/blas/base/zdotc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two double-precision complex vectors.</span>
197
-
- <spanclass="package-name">[`@stdlib/blas/base/cdotu`][@stdlib/blas/base/cdotu]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product without conjugate of x of two single-precision complex vectors.</span>
198
-
- <spanclass="package-name">[`@stdlib/blas/base/zdotu`][@stdlib/blas/base/zdotu]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product without conjugate of x of two double-precision complex vectors.</span>
199
-
- <spanclass="package-name">[`@stdlib/blas/cdotc`][@stdlib/blas/cdotc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two single-precision comple vectors.</span>
0 commit comments