Triangular Distributed Random Variable Generator

This function generates a vector of triangular distributed continuous random variable
2.6K Downloads
Updated 23 Mar 2007

View License

This function generates a vector of triangular distributed continuous random variable. By specifying minimum value(a), maximum value(b), mode(c), and number of variables to be generated(n), the function gives a vector of random variables as output (X). The command syntax is X=trirnd(a,c,b,n).You can see the histogram by using the command such as hist(trirnd(1,5,10,100000),50);

Cite As

Mongkut Piantanakulchai (2024). Triangular Distributed Random Variable Generator (https://www.mathworks.com/matlabcentral/fileexchange/8054-triangular-distributed-random-variable-generator), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R14
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Random Number Generation in Help Center and MATLAB Answers
Acknowledgements

Inspired: Two-Sided Power Distribution

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.0.0.0

Updated Help Section of the script.
Include an example of using the command.