Property SLNoiseStats.TSLNoiseStats.WindowThreshold

From Mitov Wiki Doc
(Difference between revisions)
Jump to: navigation, search
(Automated Syncronization with Documentation)
 
(Automated Syncronization with Documentation)
 
(5 intermediate revisions by one user not shown)
Line 10: Line 10:
 
=== Delphi: ===
 
=== Delphi: ===
 
<code>
 
<code>
'''property''' WindowThreshold : Real '''read''' FWindowThresh '''write''' SetWindowThresh;
+
'''property''' WindowThreshold : Real '''read''' FWindowThresh '''write''' SetWindowThresh '''default''' 0;
 
</code>
 
</code>
  
 
=== C++ Builder: ===
 
=== C++ Builder: ===
 
<code>
 
<code>
'''__property''' double WindowThreshold = { '''read'''=FWindowThresh,  '''write'''=SetWindowThresh };
+
'''__property''' double WindowThreshold = { '''read'''=FWindowThresh,  '''write'''=SetWindowThresh,  '''default'''=0 };
 
</code>
 
</code>
  

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: TSLNoiseStats

Contents

Syntax

Delphi:

property WindowThreshold : Real read FWindowThresh write SetWindowThresh default 0;

C++ Builder:

__property double WindowThreshold = { read=FWindowThresh, write=SetWindowThresh, default=0 };

Summary

Threshold for bins with (frequency-domain) window magnitudes.

Description

Prior to the initial FFT, a (time-domain) windowing function is applied to the input data stream (see property WindowType). After the initial FFT, in order to calculate SNR and other results, only bins with (frequency-domain) window magnitudes larger than WindowThreshold are included in calculations. Note WindowThreshold is set automatically when property WindowType is changed. The automatically set values will suffice for most clients.

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox