@@ -117,7 +117,7 @@ Constructs a linear operator from a symmetric tridiagonal matrix. If
117
117
its elements are real, it is also Hermitian, otherwise complex
118
118
symmetric.
119
119
"""
120
- function PreallocatedLinearOperator (M :: SymTridiagonal{T} ; storagetype= Vector{T}) where T
120
+ function PreallocatedLinearOperator (M :: SymTridiagonal{T} ; storagetype= Vector{T}, kwargs ... ) where T
121
121
nrow, ncol = size (M)
122
122
Mv = storagetype (undef, nrow)
123
123
hermitian = eltype (M) <: Real
@@ -132,7 +132,7 @@ Constructs a linear operator from a symmetric matrix. If
132
132
its elements are real, it is also Hermitian, otherwise complex
133
133
symmetric.
134
134
"""
135
- function PreallocatedLinearOperator (M :: Symmetric{T} ; storagetype= Vector{T}) where T
135
+ function PreallocatedLinearOperator (M :: Symmetric{T} ; storagetype= Vector{T}, kwargs ... ) where T
136
136
nrow, ncol = size (M)
137
137
Mv = storagetype (undef, nrow)
138
138
hermitian = eltype (M) <: Real
146
146
Constructs a linear operator from a Hermitian matrix. If
147
147
its elements are real, it is also symmetric.
148
148
"""
149
- function PreallocatedLinearOperator (M :: Hermitian{T} ; storagetype= Vector{T}) where T
149
+ function PreallocatedLinearOperator (M :: Hermitian{T} ; storagetype= Vector{T}, kwargs ... ) where T
150
150
nrow, ncol = size (M)
151
151
Mv = storagetype (undef, nrow)
152
152
symmetric = eltype (M) <: Real
0 commit comments