Skip to content

Code containing various geostatistical tools that are useful for PET.

License

Notifications You must be signed in to change notification settings

Python-Ensemble-Toolbox/Geostatistics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Geostatistics

Code containing various geostatistical tools that are useful for PET.

Installation

Clone repository and install with pip:

pip install -e .

Examples

from geostat.decomp import Cholesky
import numpy as np

stat = Cholesky()
nx = 3
mean = np.array([1., 2., 3.])
var = np.array([10., 20., 30.])
ne = 2
cov = stat.gen_cov2d(x_size=nx, y_size=1, variance=var,
                                  var_range=1., aspect=1., angle=0., var_type='sph')
sample = stat.gen_real(mean, cov, ne)

About

Code containing various geostatistical tools that are useful for PET.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages