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. -->
161
+
162
+
<sectionclass="intro">
163
+
164
+
</section>
165
+
166
+
<!-- /.intro -->
167
+
168
+
<!-- C usage documentation. -->
169
+
170
+
<sectionclass="usage">
171
+
172
+
### Usage
173
+
174
+
```c
175
+
#include"stdlib/blas/base/csscal.h"
176
+
```
177
+
178
+
#### c_csscal( N, alpha, \*X, strideX )
179
+
180
+
Scales a single-precision complex floating-point vector by a single-precision floating-point constant.
181
+
182
+
```c
183
+
#include"stdlib/complex/float32/ctor.h"
184
+
185
+
stdlib_complex64_t x[] = {
186
+
stdlib_complex64( 1.0f, 2.0f ),
187
+
stdlib_complex64( 3.0f, 4.0f ),
188
+
stdlib_complex64( 5.0f, 6.0f )
189
+
};
190
+
191
+
c_csscal( 3, 2.0f, x, 1 );
192
+
```
193
+
194
+
The function accepts the following arguments:
195
+
196
+
- **N**: `[in] CBLAS_INT` number of indexed elements.
0 commit comments