g05sp generates a vector of pseudorandom numbers from a triangular distribution with parameters xmin, xmed and xmax.

Syntax

C#
public static void g05sp(
	int n,
	double xmin,
	double xmed,
	double xmax,
	G05..::..G05State g05state,
	double[] x,
	out int ifail
)
Visual Basic
Public Shared Sub g05sp ( _
	n As Integer, _
	xmin As Double, _
	xmed As Double, _
	xmax As Double, _
	g05state As G05..::..G05State, _
	x As Double(), _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g05sp(
	int n, 
	double xmin, 
	double xmed, 
	double xmax, 
	G05..::..G05State^ g05state, 
	array<double>^ x, 
	[OutAttribute] int% ifail
)
F#
static member g05sp : 
        n : int * 
        xmin : float * 
        xmed : float * 
        xmax : float * 
        g05state : G05..::..G05State * 
        x : float[] * 
        ifail : int byref -> unit 

Parameters

n
Type: System..::..Int32
On entry: n, the number of pseudorandom numbers to be generated.
Constraint: n0.
xmin
Type: System..::..Double
On entry: the end point xmin of the triangular distribution.
xmed
Type: System..::..Double
On entry: the median of the distribution xmed (also the location of the vertex of the triangular distribution at which the PDF reaches a maximum).
Constraint: xmedxmin.
xmax
Type: System..::..Double
On entry: the end point xmax of the triangular distribution.
Constraint: xmaxxmed.
g05state
Type: NagLibrary..::..G05..::..G05State
An Object of type G05.G05State.
x
Type: array<System..::..Double>[]()[][]
An array of size [n]
On exit: the n pseudorandom numbers from the specified triangular distribution.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

The triangular distribution has a PDF (probability density function) that is triangular in profile. The base of the triangle ranges from x=xmin to x=xmax and the PDF has a maximum value of 2xmax-xmin at x=xmed. If xmin=xmed=xmax then x=xmed with probability 1; otherwise the triangular distribution has PDF:
fx=x-xminxmed-xmin×2xmax-xmin​ if ​xminxxmed,fx=xmax-xxmax-xmed×2xmax-xmin​ if ​xmed<xxmax,fx=0​ otherwise.
One of the initialization methods (G05KFF not in this release) (for a repeatable sequence if computed sequentially) or (G05KGF not in this release) (for a non-repeatable sequence) must be called prior to the first call to g05sp.

References

Knuth D E (1981) The Art of Computer Programming (Volume 2) (2nd Edition) Addison–Wesley

Error Indicators and Warnings

Errors or warnings detected by the method:
ifail=1
On entry, n<0.
ifail=3
On entry, xmed<xmin.
ifail=4
On entry, xmax<xmed.
ifail=5
On entry,state vector was not initialized or has been corrupted.
ifail=-9000
An error occured, see message report.
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

Not applicable.

Parallelism and Performance

None.

Further Comments

None.

Example

See Also