Skip to content

Commit

Permalink
docs: update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 15, 2024
1 parent 84cb3ac commit 764ef16
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Indexing is relative to the first index. To introduce an offset, use typed
array views.

If `N` is equal to `0` or `α` is equal to `0` the function returns `x`
If `N` is equal to `0` or `α` is equal to `0`, the function returns `x`
unchanged.

Parameters
Expand Down Expand Up @@ -42,7 +42,6 @@

Examples
--------
// Standard usage:
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, 1.0 ] );
> var AP = new {{alias:@stdlib/array/float32}}( [ 1.0, 2.0, 3.0 ] );
> {{alias}}( 'row-major', 'upper', 2, 1.0, x, 1, AP )
Expand All @@ -51,7 +50,7 @@

{{alias}}.ndarray( ord, uplo, N, α, x, sx, ox, AP, sap, oap )
Performs the symmetric rank 1 operation `A = α*x*x^T + A` using alternative
indexing semantics, where `α` is a scalar, `x` is an `N` element vector,
indexing semantics and where `α` is a scalar, `x` is an `N` element vector,
and `A` is an `N` by `N` symmetric matrix supplied in packed form.

While typed array views mandate a view offset based on the underlying
Expand Down Expand Up @@ -99,7 +98,6 @@

Examples
--------
// Standard usage:
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, 1.0 ] );
> var AP = new {{alias:@stdlib/array/float32}}( [ 1.0, 2.0, 3.0 ] );
> var ord = 'row-major';
Expand Down

0 comments on commit 764ef16

Please sign in to comment.