deterministicGauss1​D() – Deterministic Gaussian Samples

バージョン 1.0.1 (2.32 KB) 作成者: Daniel Frisch
Optimally placed samples of the standard normal density in the scalar case
ダウンロード: 17
更新 2020/12/12

ライセンスの表示

samples = deterministicGauss1D( L )

Deterministic Sampling of Standard Normal Gaussian Distribution

Advantages of deterministic sampling vs random sampling like randn()
- Reproducible results
- Samples are optimally placed
- Less samples needed for same quality results
- Methods may fail occassionally due to poor choice of random samples

Input
- L : number of samples

Output
- samples : (L x 1) vector with 1D sample locations

Example : Get 7 deterministic samples with a standard deviation of 3 and a mean of 5.
>> samples = deterministicGauss1D(5)*3 + 5;

https://isas.iar.kit.edu/Publications.php : Theory of deterministic sampling in general
https://nonlinearestimation.bitbucket.io/ : Deterministic Gaussian sampling in higher dimensions
https://github.com/libDirectional/ : Deterministic sampling in non-Euclidean manifolds

引用

Daniel Frisch (2025). deterministicGauss1D() – Deterministic Gaussian Samples (https://jp.mathworks.com/matlabcentral/fileexchange/84275-deterministicgauss1d-deterministic-gaussian-samples), MATLAB Central File Exchange. に取得済み.

MATLAB リリースの互換性
作成: R2020b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.1

Added icon

1.0.0