Triangular pdf

Computes and plots triangular pdf and cdf.
ダウンロード: 3K
更新 2004/9/7

ライセンスの表示

The files in this folder contains small routines for MATLAB to compute and plot triangular probability denstity function. There are following 4 files:

tglpdf : Compute and plot triangular probability density function for given value of X (X can be scalar or matrix)

tglcdf : Compute and plot triangular cumulative distribution function for given value of X (X can be scalar or matrix)

invtglpdf: Compute the value of X from given value of probability density. This is inverse of tglpdf.

invtglcdf: Compute the value of X from given value of cumulative distribution. This is inverse of tglcdf.

引用

Durga Lal Shrestha (2024). Triangular pdf (https://www.mathworks.com/matlabcentral/fileexchange/5635-triangular-pdf), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R14
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersExploration and Visualization についてさらに検索

Community Treasure Hunt

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

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

pdf is integrated analytically to compute cdf and this gives faster solution than the quad function of Matlab as used in previous version. Also for invtglcdf, direct solution is obtained, but in previous version it required iterations.