Skip to content

fix typos in README.md #37

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)


This is a package for extra Positive (Semi-) Definated Matrix types.
This is a package for extra Positive (Semi-) Definite Matrix types.
It is an extension to [PDMats.jl](https://github.com/JuliaStats/PDMats.jl).

It probably wouldn't exist, except Distributions.jl is currently very tied to the idea that the type of a covariance matrix should subtype `AbstractPDMat`.
There is [an issue open to change that](https://github.com/JuliaStats/Distributions.jl/issues/1219).
When that is resolve the matrix defined here may well move elsewhere, or cease to be required.
When that is resolved the matrix defined here may well move elsewhere, or cease to be required.

## The Matrixes

### PSDMat
A Positive Semi-Definite Matrix.
It still subtypes `AbstractPDMat`.
It's not quite as nice to work with as a truely positive definite matrix, since the math doesn't work out so well.
But this is able to represent all covariences -- which must be positive *semi*-definate.
It's not quite as nice to work with as a truly positive definite matrix, since the math doesn't work out so well.
But this is able to represent all covariances -- which must be positive *semi*-definite.
You might not like the consequences,

```julia
Expand Down