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.
blas/base/ndarray/gdot
1 parent 0cf9821 commit 04fd54fCopy full SHA for 04fd54f
lib/node_modules/@stdlib/blas/base/ndarray/gdot/docs/types/index.d.ts
@@ -20,7 +20,7 @@
20
21
/// <reference types="@stdlib/types"/>
22
23
-import { ndarray } from '@stdlib/types/ndarray';
+import { typedndarray } from '@stdlib/types/ndarray';
24
25
/**
26
* Computes the dot product of two one-dimensional ndarrays.
@@ -40,7 +40,7 @@ import { ndarray } from '@stdlib/types/ndarray';
40
* var z = gdot( [ x, y ] );
41
* // returns -5.0
42
*/
43
-declare function gdot<T extends ndarray = ndarray>( arrays: [ T, T ] ): number;
+declare function gdot<T extends typedndarray<number> = typedndarray<number>>( arrays: [ T, T ] ): number;
44
45
46
// EXPORTS //
0 commit comments