Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
  • Loading branch information
ShabiShett07 authored May 30, 2025
commit 0f4d16b32413986bbb229f9d1da00a61630feda3
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/cher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The function has the following parameters:
- **A**: input matrix stored in linear memory as [`Complex64Array`][@stdlib/array/complex64].
- **LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).

The `N` and stride parameters determine how values from `x` are scaled by `ca`. For example, to scale every other value in `x` by `ca`,
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to iterate over the elements of `x` in reverse order,

```javascript
var Complex64Array = require( '@stdlib/array/complex64' );
Expand Down
Loading