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
c_dswap_ndarray( N, x, strideX, 0, y, strideY, 6 );
286
+
287
+
// Print the result:
288
+
for ( int i = 0; i < 8; i++ ) {
289
+
printf( "x[ %i ] = %lf\n", i, x[ i ] );
290
+
printf( "y[ %i ] = %lf\n", i, y[ i ] );
291
+
}
258
292
}
259
293
```
260
294
@@ -270,15 +304,6 @@ int main( void ) {
270
304
271
305
<section class="related">
272
306
273
-
* * *
274
-
275
-
## See Also
276
-
277
-
- <span class="package-name">[`@stdlib/blas/base/dcopy`][@stdlib/blas/base/dcopy]</span><span class="delimiter">: </span><span class="description">copy values from x into y.</span>
278
-
- <span class="package-name">[`@stdlib/blas/base/gswap`][@stdlib/blas/base/gswap]</span><span class="delimiter">: </span><span class="description">interchange two vectors.</span>
279
-
- <span class="package-name">[`@stdlib/blas/base/sswap`][@stdlib/blas/base/sswap]</span><span class="delimiter">: </span><span class="description">interchange two single-precision floating-point vectors.</span>
280
-
- <span class="package-name">[`@stdlib/blas/dswap`][@stdlib/blas/dswap]</span><span class="delimiter">: </span><span class="description">interchange two double-precision floating-point vectors.</span>
0 commit comments