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/blas/base/cdotc/README.md
+153Lines changed: 153 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,10 +153,157 @@ console.log( out );
153
153
154
154
<!-- /.examples -->
155
155
156
+
<!-- C interface documentation. -->
157
+
158
+
* * *
159
+
160
+
<sectionclass="c">
161
+
162
+
## C APIs
163
+
164
+
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
165
+
166
+
<sectionclass="intro">
167
+
168
+
</section>
169
+
170
+
<!-- /.intro -->
171
+
172
+
<!-- C usage documentation. -->
173
+
174
+
<sectionclass="usage">
175
+
176
+
### Usage
177
+
178
+
```c
179
+
#include"stdlib/blas/base/cdotc.h"
180
+
```
181
+
182
+
#### c_cdotc( N, \*X, strideX, \*Y, strideY )
183
+
184
+
Calculates the dot product `x^H * y` of `x` and `y`.
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
157
297
158
298
<section class="related">
159
299
300
+
* * *
301
+
302
+
## See Also
303
+
304
+
- <span class="package-name">[`@stdlib/blas/base/cdotu`][@stdlib/blas/base/cdotu]</span><span class="delimiter">: </span><span class="description">calculate the dot product of two single-precision complex floating-point vectors.</span>
305
+
- <span class="package-name">[`@stdlib/blas/base/zdotc`][@stdlib/blas/base/zdotc]</span><span class="delimiter">: </span><span class="description">calculate the dot product of two double-precision complex floating-point vectors, conjugating the first vector.</span>
0 commit comments