One of the constructors of LowRankFactorizedNEP creates a dense matrix.
|
function LowRankFactorizedNEP(L::AbstractVector{S}, U::AbstractVector{S}, |
|
f) where {S<:AbstractMatrix} |
|
A = L .* adjoint.(U); |
|
return LowRankFactorizedNEP(L,U,A,f) |
|
end |
This will be slow. Better to use e.g. LowRankApprox.LowRankMatrix
One of the constructors of
LowRankFactorizedNEPcreates a dense matrix.NonlinearEigenproblems.jl/src/low_rank_nep.jl
Lines 38 to 42 in 0368485
This will be slow. Better to use e.g.
LowRankApprox.LowRankMatrix