You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/sspr/README.md
+77-8
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
@license Apache-2.0
4
4
5
-
Copyright (c) 2024 The Stdlib Authors.
5
+
Copyright (c) 2025 The Stdlib Authors.
6
6
7
7
Licensed under the Apache License, Version 2.0 (the "License");
8
8
you may not use this file except in compliance with the License.
@@ -183,21 +183,63 @@ console.log( AP );
183
183
### Usage
184
184
185
185
```c
186
-
TODO
186
+
#include"stdlib/blas/base/sspr.h"
187
187
```
188
188
189
-
#### TODO
189
+
#### c_sspr( order, uplo, N, alpha, \*X, strideX, \*AP )
190
190
191
-
TODO.
191
+
Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form.
Performs the symmetric rank 1 operation `A = α*x*x^T + A` where `α` is a scalar, `x` is an `N` element vector, and `A` is an `N` by `N` symmetric matrix supplied in packed form using alternative indexing semantics.
1 commit comments
stdlib-bot commentedon Feb 16, 2025
Coverage Report
The above coverage report was generated for the changes in this push.