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
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
223
+
224
+
<sectionclass="intro">
225
+
226
+
</section>
227
+
228
+
<!-- /.intro -->
229
+
230
+
<!-- C usage documentation. -->
231
+
232
+
<sectionclass="usage">
233
+
234
+
### Usage
235
+
236
+
```c
237
+
#include"stdlib/blas/base/ccopy.h"
238
+
```
239
+
240
+
#### c_ccopy( N, X, strideX, Y, strideY )
241
+
242
+
Copies values from `X` into `Y`.
243
+
244
+
```c
245
+
constfloat x[] = { 1.0f, 2.0f, 3.0f, 4.0f }; // interleaved real and imaginary components
246
+
float y[] = { 0.0f, 0.0f, 0.0f, 0.0f };
247
+
248
+
c_ccopy( 2, (void *)x, 1, (void *)Y, 1 );
249
+
```
250
+
251
+
The function accepts the following arguments:
252
+
253
+
- **N**: `[in] CBLAS_INT` number of indexed elements.
254
+
- **X**: `[in] void*` input array.
255
+
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
256
+
- **Y**: `[out] void*` output array.
257
+
- **strideY**: `[in] CBLAS_INT` index increment for `Y`.
0 commit comments