Skip to content

Commit c729799

Browse files
committed
Update manual.adoc
1 parent 10d311a commit c729799

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

docs/manual.adoc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,3 +436,21 @@ public class ExponentialStream extends RandomStream
436436
----
437437

438438
StreamSelect indicates the offset in the random number sequence to begin sampling, and MGSeed and LCGSeed can be used to modify the seed values used by the RandomStream class.
439+
440+
=== ErlangStream
441+
442+
ErlangStream returns an erlang distribution with mean mean and standard deviation sd.
443+
444+
----
445+
public class ErlangStream extends RandomStream
446+
{
447+
public ErlangStream (double mean, double sd);
448+
public ErlangStream (double mean, double sd, int StreamSelect);
449+
public ErlangStream (double mean, double sd, int StreamSelect, long MGSeed, long LCGSeed);
450+
451+
public double getNumber () throws IOException, ArithmeticException;
452+
};
453+
----
454+
455+
456+
===

0 commit comments

Comments
 (0)