Menu

Tree [441e66] default /
 History

Read Only access


File Date Author Commit
 .pc 2016-01-19 Julien Bect Julien Bect [68308c] maint: Commit .pc directory (needed to build ta...
 admin 2019-10-12 Julien Bect Julien Bect [a6b375] Merge default -> covmat
 arrays 2019-10-12 Julien Bect Julien Bect [d56cd0] stk_factorialdesign.m: Provide missing help text
 core 2019-08-15 Julien Bect Julien Bect [cfe0a3] Merge default -> covmat
 covfcs 2018-07-15 Julien Bect Julien Bect [58d9b4] Merge default -> covmat
 doc 2017-07-01 Julien Bect Julien Bect [ccd80a] Remove all occurences of response_name
 examples 2019-08-15 Julien Bect Julien Bect [dc2482] Remove unpolished LOO-related stuff from this b...
 iago 2019-08-15 Julien Bect Julien Bect [71ede2] Remove unpolished IAGO code from this branch (n...
 lm 2018-10-29 Julien Bect Julien Bect [f13a3f] Merge default -> covmat
 misc 2019-08-15 Julien Bect Julien Bect [cfe0a3] Merge default -> covmat
 model 2019-09-06 Julien Bect Julien Bect [37441c] INDEX: Fix sections and re-organize a little
 param 2019-08-15 Julien Bect Julien Bect [cfe0a3] Merge default -> covmat
 sampling 2019-08-11 Julien Bect Julien Bect [b9243f] stk_sampling_nestedlhs.m: Minor fix in help text
 utils 2018-11-30 Julien Bect Julien Bect [e31e2b] Merge default -> covmat
 .hgignore 2017-09-05 Julien Bect Julien Bect [e1a3ee] .hgignore: Ignore *.mexw32 files
 .hgtags 2019-08-15 Julien Bect Julien Bect [b89266] Tag release 2.6.0
 AUTHORS.md 2019-06-19 Julien Bect Julien Bect [35d727] stk_example_misc04.m: Fix a typo
 CITATION 2019-09-06 Julien Bect Julien Bect [b555d9] CITATION: Make bibtex refence year configurable
 COPYING 2014-09-02 Julien Bect Julien Bect [31d4f5] Rename LICENSE to COPYING.
 ChangeLog 2019-10-12 Julien Bect Julien Bect [441e66] Previous commit closes ticket #91
 Makefile 2019-09-03 Julien Bect Julien Bect [e1698c] Makefile: Use ${OCTAVE} from environment if def...
 NEWS.md 2019-10-12 Julien Bect Julien Bect [441e66] Previous commit closes ticket #91
 README.md 2019-08-14 Julien Bect Julien Bect [7d14a6] README.md: Update copyright years
 stk_init.m 2019-08-15 Julien Bect Julien Bect [71ede2] Remove unpolished IAGO code from this branch (n...
 stk_version.m 2019-08-15 Julien Bect Julien Bect [8f8ed8] Default branch is now looking at the future (2....

Read Me

STK: a Small (Matlab/Octave) Toolbox for Kriging

This README file is part of

STK: a Small (Matlab/Octave) Toolbox for Kriging
http://sourceforge.net/projects/kriging

STK is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your
option) any later version.

STK is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.

You should have received a copy of the GNU General Public License
along with STK. If not, see http://www.gnu.org/licenses/.

General information

Version: See stk_version.m

Authors: See AUTHORS.md file

Maintainers: Julien Bect julien.bect@centralesupelec.fr
and Emmanuel Vazquez emmanuel.vazquez@centralesupelec.fr

Description: The STK is a (not so) Small Toolbox for Kriging. Its
primary focus is on the interpolation/regression
technique known as kriging, which is very closely related
to Splines and Radial Basis Functions, and can be
interpreted as a non-parametric Bayesian method using a
Gaussian Process (GP) prior. The STK also provides tools
for the sequential and non-sequential design of
experiments. Even though it is, currently, mostly geared
towards the Design and Analysis of Computer Experiments
(DACE), the STK can be useful for other applications
areas (such as Geostatistics, Machine Learning,
Non-parametric Regression, etc.).

Copyright: Large portions are Copyright (C) 2011-2014 SUPELEC
and Copyright (C) 2015-2019 CentraleSupelec.
See individual copyright notices for more details.

License: GNU General Public License, version 3 (GPLv3).
See COPYING for the full license.

URL: http://sourceforge.net/projects/kriging

One toolbox, two flavours

The STK toolbox comes in two flavours:

  • an "all purpose" release, which is suitable for use both with
    GNU Octave
    and with Matlab.
  • an Octave package, for people who want to install and use STK as a
    regular Octave package.

Hint: if you're not sure about the version that you have...

  • the "all purpose" release has this file (README.md) and the stk_init
    function (stk_init.m) in the top-level directory,
  • the Octave package has a DESCRIPTION file in the top-level directory
    and this file in the doc/ subdirectory.

Quick Start

Quick start with the "all purpose" release (Matlab/Octave)

Download and unpack an archive of the "all purpose" release from the
STK project
file release system
on SourceForge.

Run stk_init.m in either Octave or Matlab.

After that, you should be able to run the examples located in the examples
directory. All of them are scripts, the file name of which starts with
the stk_example_ prefix.

For instance, type stk_example_kb03 to run the third example in the "Kriging
basics" series.

Quick start with the Octave package release (Octave only)

Assuming that you have a working Internet connection, typing pkg install -forge stk
(from within Octave) will automatically download the latest STK package tarball from the
Octave Forge
file release system
on SourceForge and install it for you.

Alternatively, if you want to install an older (or beta) release, you can download
the tarball from either the STK project FRS or the Octave Forge FRS, and install it
with pkg install FILENAME.tar.gz.

After that, you can load STK using pkg load stk.

To check that STK is properly loaded, try for instance stk_example_kb03 to run
the third example in the "Kriging basics" series.

Requirements and recommendations

Common requirement

Your installation must be able to compile C mex files.

Requirements and recommendations for use with GNU Octave

The STK is tested to work with GNU Octave 3.8.2 or newer, but
should probably also work with Octave 3.8.0 and 3.8.1.

Older versions of Octave (<= 3.6.2) are no longer supported, and
are known to contain bugs that prevent some STK functions from
working properly.

Requirements and recommendations for use with Matlab

The STK works with Matlab R2007a or newer.

The Optimization Toolbox is recommended.

The Parallel Computing Toolbox is optional.

Content

By publishing this toolbox, the idea is to provide a convenient and
flexible research tool for working with kriging-based methods. The
code of the toolbox is meant to be easily understandable, modular,
and reusable. By way of illustration, it is very easy to use this
toolbox for implementing the EGO algorithm [1].
Besides, this toolbox can serve as a basis for the implementation
of advanced algorithms such as Stepwise Uncertainty Reduction (SUR)
algorithms [2].

The toolbox consists of three parts:

  1. The first part is the implementation of a number of covariance
    functions, and tools to compute covariance vectors and matrices.
    The structure of the STK makes it possible to use any kind of
    covariances: stationary or non-stationary covariances, aniso-
    tropic covariances, generalized covariances, etc.

  2. The second part is the implementation of a REMAP procedure to
    estimate the parameters of the covariance. This makes it possible
    to deal with generalized covariances and to take into account
    prior knowledge about the parameters of the covariance.

  3. The third part consists of prediction procedures. In its current
    form, the STK has been optimized to deal with moderately large
    data sets.

References

[1] D. R. Jones, M. Schonlau, and William J. Welch. Efficient global
optimization of expensive black-box functions
. Journal of Global
Optimization, 13(4):455-492, 1998.

[2] J. Bect, D. Ginsbourger, L. Li, V. Picheny, and E. Vazquez.
Sequential design of computer experiments for the estimation of a
probability of failure
. Statistics and Computing, pages 1-21, 2011.
DOI: 10.1007/s11222-011-9241-4.

Ways to get help, report bugs, ask for new features...

Use the "help" mailing-list:

kriging-help@lists.sourceforge.net
https://sourceforge.net/p/kriging/mailman

to ask for help on STK, and the ticket manager:

https://sourceforge.net/p/kriging/tickets

to report bugs or ask for new features.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.