Property SLGaussGen.TSLGaussGen.Seed
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Seed : Cardinal '''read''' FSeed '''write''' | + | '''property''' Seed : Cardinal '''read''' FSeed '''write''' SetSeed '''default''' 31192; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' unsigned int Seed = { '''read'''=FSeed, '''write'''= | + | '''__property''' unsigned int Seed = { '''read'''=FSeed, '''write'''=SetSeed, '''default'''=31192 }; |
</code> | </code> | ||
Revision as of 20:30, 10 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;