Skip to content

Commit 21a5435

Browse files
committed
updated the docs
1 parent 3428d45 commit 21a5435

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

doc/specs/stdlib_specialmatrices.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Experimental
9090

9191
With the exception of `extended precision` and `quadruple precision`, all the types provided by `stdlib_specialmatrices` benefit from specialized kernels for matrix-vector products accessible via the common `spmv` interface.
9292

93-
- For `tridiagonal` matrices, the LAPACK `lagtm` backend is being used.
93+
- For `tridiagonal` matrices, the backend is either LAPACK `lagtm` or the generalized routine `glagtm`, depending on the values and types of `alpha` and `beta`.
9494

9595
#### Syntax
9696

@@ -110,10 +110,6 @@ With the exception of `extended precision` and `quadruple precision`, all the ty
110110

111111
- `op` (optional) : In-place operator identifier. Shall be a character(1) argument. It can have any of the following values: `N`: no transpose, `T`: transpose, `H`: hermitian or complex transpose.
112112

113-
@warning
114-
Due to limitations of the underlying `lapack` driver, currently `alpha` and `beta` can only take one of the values `[-1, 0, 1]` for `tridiagonal` and `symtridiagonal` matrices. See `lagtm` for more details.
115-
@endwarning
116-
117113
#### Examples
118114

119115
```fortran

0 commit comments

Comments
 (0)