Skip to content

yangjunjie0320/SimpleLinearAlgebra.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleLinearAlgebra

Build Status Coverage

This is a simple linear algebra library that builds upon julia language.

Installation

git clone https://github.com/yangjunjie0320/SimpleLinearAlgebra.jl
cd SimpleLinearAlgebra.jl
julia --project=. -e 'using Pkg; Pkg.instantiate()'

Usage

using LinearAlgebra
using SimpleLinearAlgebra

# forward substitution
l = tril(rand(10, 10))
b = rand(10)
prob = ForwardSubstitution(l, b)
soln = kernel(prob)

x = soln.x
@assert isapprox(l * x, b, atol=1e-10)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published