Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add polar decompositions #19

Merged
merged 4 commits into from
Nov 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ julia:
matrix:
allow_failures:
- julia: nightly
- os: osx
notifications:
email: false
after_success:
Expand Down
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
MIT License

Copyright (c) 2019 JuliaMatrices
Copyright (c) 2019 JuliaMatrices.
Some of the code for polar decompositions: Copyright (c) 2014: Weijian Zhang.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name = "MatrixFactorizations"
uuid = "a3b82374-2e81-5b9e-98ce-41277c0e4c87"
version = "0.6.1"
version = "0.7.0"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
ArrayLayouts = "0.4.3"
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# MatrixFactorizations.jl

[![Build Status](https://travis-ci.org/JuliaMatrices/MatrixFactorizations.jl.svg?branch=master)](https://travis-ci.org/JuliaMatrices/MatrixFactorizations.jl)
[![Build Status](https://travis-ci.com/JuliaMatrices/MatrixFactorizations.jl.svg?branch=master)](https://travis-ci.com/JuliaMatrices/MatrixFactorizations.jl)

[![codecov](https://codecov.io/gh/JuliaMatrices/MatrixFactorizations.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaMatrices/MatrixFactorizations.jl)

A Julia package to contain non-standard matrix factorizations. At the moment it
implements the QL factorization, though in the future may include other factorizations such
as the UL, LQ, and RQ factorizations.
A Julia package to contain non-standard matrix factorizations. At the moment it
implements the QL and UL factorizations, a combined Cholesky factorization with inverse,
and polar decompositions.
In the future it may include other factorizations such
as the LQ and RQ factorizations.

## QL Factorization

Expand Down
1 change: 1 addition & 0 deletions src/MatrixFactorizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ include("ul.jl")
include("qr.jl")
include("ql.jl")
include("choleskyinv.jl")
include("polar.jl")

end #module
Loading