Property SLGaussGen.TSLGaussGen.Seed
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(One intermediate revision by one user not shown) |
Latest revision as of 00:11, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TSLGaussGen
Contents |
Syntax
Delphi:
property Seed : Cardinal read FSeed write SetSeed default 31192;
C++ Builder:
__property unsigned int Seed = { read=FSeed, write=SetSeed, default=31192 };
Summary
Initial seed value for the pseudo-random number generation.
Description
Use this property to specify the initial seed value used by
the pseudo-random number generation algorithm.
Delphi example:
SLGaussGen1.Seed := 2000;
C++ Builder example:
SLGaussGen1->Seed = 2000;
Visual C++(MFC) example:
SLGaussGen1.Seed = 2000;
C# example:
gaussGen1.Seed = 2000;