function [ x, seed ] = weibull_sample ( a, b, c, seed ) %*****************************************************************************80 % %% WEIBULL_SAMPLE samples the Weibull PDF. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 22 September 2004 % % Author: % % John Burkardt % % Parameters: % % Input, real A, B, C, the parameters of the PDF. % 0.0 < B, % 0.0 < C. % % 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 = weibull_cdf_inv ( cdf, a, b, c ); return end