No BSD License  

Highlights from
An Introduction to Stochastic Processes

image thumbnail
[F,g]=c3_wibo1(alpha,beta,t)
function [F,g]=c3_wibo1(alpha,beta,t)
%
%   Find distribution for Weibull  F(x) = 1 - exp(-(x/alpha)^beta)
%   x in (0, t)
%   1/n  is the step length
%
n=200; n1=n*t; 
tn=1/n; i=1:1:n1; x=tn*(i+0.5); x=(1/alpha)*x;
g=1-exp(-(x.^beta));
i=1:1:n1; x=tn*i; x=(1/alpha)*x;
F=1-exp(-(x.^beta));

Contact us at files@mathworks.com