From 764ef16257aa9e2d8cc57c4801b1448c4b84c04b Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Thu, 15 Aug 2024 14:58:27 -0700 Subject: [PATCH] docs: update copy --- lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt b/lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt index ed234c347f0..d90115f2bb4 100644 --- a/lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/base/sspr/docs/repl.txt @@ -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 @@ -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 ) @@ -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 @@ -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';