Skip to content

MPF-Optimization-Laboratory/SymWoodburyMatrices.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SymWoodburyMatrices

A symmetric version of WoodburyMatrices

using SymWoodburyMatrices
A = eye(4); B = ones(4,1); D = eye(1,1); b = ones(4,1)

# M = A + BDBᵀ
M = SymWoodbury(A, B, D)

It can be used like a normal matrix

julia> M*b
4x1 Array{Float64,2}:
 5.0
 5.0
 5.0
 5.0

julia> M\b
4x1 Array{Float64,2}:
 0.2
 0.2
 0.2
 0.2

etc.

About

Symmetric Woodbury operators.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages