Property VLGaussNoise.TVLGaussNoise.StDev
From Mitov Wiki Doc
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: TVLGaussNoise
Contents |
Syntax
Delphi:
property StDev : Byte read FStDev write SetStDev default 100;
C++ Builder:
__property BYTE StDev = { read=FStDev, write=SetStDev, default=100 };
Summary
The Standard deviation of the Gaussian distribution.
Description
Use this property to specify the Standard deviation of the
Gaussian distribution.
Delphi example:
VLGaussNoise1.StdDev := 9000;
C++ Builder example:
VLGaussNoise1->StdDev = 9000;
Visual C++(MFC) example:
VLGaussNoise1.StdDev = 9000;
C# example:
gaussNoise1.StdDev = 9000;