A python impementation of covariance matrices.
Project description
covmats
🐍 Covariance matrices representation.
The complete and up to date documentation can be found here: https://covmats.readthedocs.io.
🎯 Motivations
Calculations involving covariance matrices (e.g. linear algebra, data whitening, multivariate normal function evaluation) are often performed more efficiently using a decomposition of the covariance matrix instead of the covariance matrix itself. For large scale application, a dense covariance matrix would not even fit in memory and one must rely on low-rank approxiations. This package allows the user to construct an object representing a covariance matrix using any of several decompositions/approximations and perform calculations using a common interface.
The common interface CovarianceMatrix can be seen as a extension of the class scipy.stats.Covariance as it inherits from it (thus making it compatible with all scipy.stats functions and classes) and dope it with LinearOperator capabilities.
The package is used in large-scale inversion packages such as pypcga, pyesmda and pyrtid.
🚀 Quick start
To install covmats, the easiest way is through pip:
pip install covmats
Or alternatively using conda
conda install covmats
You might also clone the repository and install from source
pip install -e .
Once the installation is done, covmats is straighforward to use and proposes the following full-rank covariance representations:
It also provides low-rank approximations suitable for large scale problems:
Let’s start by importing numpy, scipy and covmats for the tests and define a random number generator seed for reproducibility:
import numpy as np
import scipy as sp
import covmats
rng_seed = 2026
First example with a diagonal covariance matrix
In the following, we define a (3 x 3) covariance matrix defining only its diagonal (i.e., all elements of the random vectors are independent). Using scipy, it is possible to compute the pdf.
d = [1, 2, 3]
A33 = np.diag(d) # a diagonal covariance matrix
x = [4, -2, 5] # a point of interest
dist = sp.stats.multivariate_normal(mean=[0, 0, 0], cov=A33)
dist.pdf(x)
np.float64(4.9595685102808205e-08)
It is possible to obtain a dense representation in a straighforward manner:
cov_diag33 = covmats.CovViaDiagonal(d)
dist = sp.stats.multivariate_normal(mean=[0, 0, 0], cov=cov_diag33)
dist.pdf(x)
np.float64(4.9595685102808205e-08)
It is compatible with the stats API from scipy since the base class inherit from Covariance.
🏗️ Complete example with supporting paper coming Q1 2026.
🔑 License
This project is released under the BSD 3-Clause License.
Copyright (c) 2026, Antoine COLLET. All rights reserved.
For more details, see the LICENSE file included in this repository.
⚠️ Disclaimer
This software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the software or the use or other dealings in the software.
By using this software, you agree to accept full responsibility for any consequences, and you waive any claims against the authors or contributors.
📧 Contact
For questions, suggestions, or contributions, you can reach out via:
We welcome contributions!
📚 References
TODO
Free software: SPDX-License-Identifier: BSD-3-Clause
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file covmats-0.2.2.tar.gz.
File metadata
- Download URL: covmats-0.2.2.tar.gz
- Upload date:
- Size: 2.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7addd846b84bdf88a5649ce565df975b7f6baa49734890aa75b738b04b5ba0c
|
|
| MD5 |
51de1d1b62efc284fd1bdfbc334a1882
|
|
| BLAKE2b-256 |
f86d2c95886715a20d02a3d01907ed0ff4cff218cd3e712a246d3fbea7a7ec16
|
File details
Details for the file covmats-0.2.2-py3-none-any.whl.
File metadata
- Download URL: covmats-0.2.2-py3-none-any.whl
- Upload date:
- Size: 2.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d97e850546c1ea010f60683da8f83a86bfa587b67b9d509b3e1b1516f8e6a41
|
|
| MD5 |
7c0cc3772cff4540397eb5d2dc37f621
|
|
| BLAKE2b-256 |
9f1d9fee272becf783eb4038c33fdb2bb03c7a4b577f4cfab55d479500768553
|