function [ x, seed ] = triangular_sample ( a, b, seed ) %*****************************************************************************80 % %% TRIANGULAR_SAMPLE samples the Triangular PDF. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 22 September 2004 % % Author: % % John Burkardt % % Parameters: % % Input, real A, B, the parameters of the PDF. % A < B. % % Input, integer SEED, a seed for the random number generator. % % Output, real X, a sample of the PDF. % % Output, integer SEED, an updated seed for the random number generator. % [ cdf, seed ] = r8_uniform_01 ( seed ); x = triangular_cdf_inv ( cdf, a, b ); return end