Skip to content

Commit fa46b36

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

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/blas/base/csrot/src

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
* Applies a plane rotation.
2525
*
2626
* @param N number of indexed elements
27-
* @param CX first input array
28-
* @param strideX CX stride length
29-
* @param CY second input array
30-
* @param strideY CY stride length
27+
* @param X first input array
28+
* @param strideX X stride length
29+
* @param Y second input array
30+
* @param strideY Y stride length
3131
* @param c cosine of the angle of rotation
3232
* @param s sine of the angle of rotation
3333
*/
34-
void API_SUFFIX(c_csrot)( const CBLAS_INT N, void *CX, const CBLAS_INT strideX, void *CY, const CBLAS_INT strideY, const float c, const float s ) {
34+
void API_SUFFIX(c_csrot)( const CBLAS_INT N, void *X, const CBLAS_INT strideX, void *Y, const CBLAS_INT strideY, const float c, const float s ) {
3535
CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
3636
CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
37-
API_SUFFIX(c_csrot_ndarray)( N, CX, strideX, ox, CY, strideY, oy, c, s );
37+
API_SUFFIX(c_csrot_ndarray)( N, X, strideX, ox, Y, strideY, oy, c, s );
3838
}

0 commit comments

Comments
 (0)