Skip to content

Commit c1dd4a7

Browse files
authored
chore: update variable name
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 75d09e6 commit c1dd4a7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/node_modules/@stdlib/blas/base/csrot/src/csrot_ndarray.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
* Applies a plane rotation.
2424
*
2525
* @param N number of indexed elements
26-
* @param CX first input array
27-
* @param strideX CX stride length
28-
* @param offsetX starting index for CX
29-
* @param CY second input array
30-
* @param strideY CY stride length
31-
* @param offsetY starting index for CY
26+
* @param X first input array
27+
* @param strideX X stride length
28+
* @param offsetX starting index for X
29+
* @param Y second input array
30+
* @param strideY Y stride length
31+
* @param offsetY starting index for Y
3232
* @param c cosine of the angle of rotation
3333
* @param s sine of the angle of rotation
3434
*/
35-
void API_SUFFIX(c_csrot_ndarray)( const CBLAS_INT N, void *CX, const CBLAS_INT strideX, const CBLAS_INT offsetX, void *CY, const CBLAS_INT strideY, const CBLAS_INT offsetY, const float c, const float s ) {
36-
float *x = (float *)CX;
37-
float *y = (float *)CY;
35+
void API_SUFFIX(c_csrot_ndarray)( const CBLAS_INT N, void *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, void *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY, const float c, const float s ) {
36+
float *x = (float *)X;
37+
float *y = (float *)Y;
3838
CBLAS_INT ix;
3939
CBLAS_INT iy;
4040
CBLAS_INT sx;

0 commit comments

Comments
 (0)