Skip to content

Commit ac5310c

Browse files
authored
remove: floating point
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent c6e3f16 commit ac5310c

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Performs the symmetric rank 1 operation `A = α*x*x^T + A` using alternative ind
224224
double A[] = { 1.0, 2.0, 3.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0 };
225225
const double x[] = { 1.0, 2.0, 3.0 };
226226

227-
c_dsyr_ndarray( CblasUpper, 3, 1.0f, x, 1, 0, A, 3, 1, 0 );
227+
c_dsyr_ndarray( CblasUpper, 3, 1.0, x, 1, 0, A, 3, 1, 0 );
228228
```
229229
230230
The function accepts the following arguments:

0 commit comments

Comments
 (0)