Number of buckets per decade of percent deadband.
[DataMember()]
[ValueRange(1.401298E-45, 3.402823E+38)]
public float PercentDeadbandBucketsPerDecade {get; set;}
[DataMember()]
[ValueRange(1.401298E-45, 3.402823E+38)]
public:
property float PercentDeadbandBucketsPerDecade {
float get();
void set ( float value);
}
'Declaration
<DataMemberAttribute()>
<ValueRangeAttribute(1.401298E-45, 3.402823E+38)>
Public Property PercentDeadbandBucketsPerDecade As Single
'Usage
Dim instance As DAParameterBucketingParameters
Dim value As Single
instance.PercentDeadbandBucketsPerDecade = value
value = instance.PercentDeadbandBucketsPerDecade
Property Value
The percent deadband values (from 0.0 to 100.0) are divided into "buckets", using a logarithmic scale. This number specifies how many buckets will exist between values 10.0 - 100.0, and also 1.0 - 10.0, 0.1 - 1.0, and so forth. Percent deadbands requested will be adjusted so that the nearest bucket that fully satisfies the percent deadband requirement is used (i.e. the system may choose a percent deadband lower than requested, but not higher).
Valid values of this property are in the range from 1.401298E-45 (Single.Epsilon)
to 3.402823E+38 (Single.MaxValue)
.
The default value of this property is 6
.
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
See Also