Skip to content

Commit e53c550

Browse files
authored
chore: update markdown example datatype
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent a114343 commit e53c550

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,15 +299,15 @@ int main( void ) {
299299

300300
// Print the result:
301301
for ( int i = 0; i < N*N; i++ ) {
302-
printf( "A1[ %i ] = %f\n", i, A1[ i ] );
302+
printf( "A1[ %i ] = %lf\n", i, A1[ i ] );
303303
}
304304

305305
// Perform the symmetric rank 1 operation `A = α*x*x^T + A` using alternative indexing semantics:
306306
c_dsyr_ndarray( CblasUpper, N, 1.0, x, 1, 0, A2, N, 1, 0 );
307307

308308
// Print the result:
309309
for ( int i = 0; i < N*N; i++ ) {
310-
printf( "A2[ %i ] = %f\n", i, A[ i ] );
310+
printf( "A2[ %i ] = %lf\n", i, A[ i ] );
311311
}
312312
}
313313
```

0 commit comments

Comments
 (0)