Click or drag to resize

IFrequencyRange Interface

An interface representing a frequency range that defines frequency point for simulation.

Namespace:  EMInvent.InventSim.COMServer
Assembly:  InventSim (in InventSim.exe) Version: 5.1.12.6+develop
Syntax
public interface IFrequencyRange

The IFrequencyRange type exposes the following members.

Properties
  NameDescription
Public propertyMaximumFrequency
Gets and sets ending point of the frequency range.
Public propertyMinimumFrequency
Gets and sets starting point of the frequency range.
Public propertyNumberOfPoints
Gets and sets the number of frequency points.
Public propertyStepSize
Gets and sets the spacings between the frequency points.
Top
Remarks
The frequency range defines linearly spaced frequency points starting from MinimumFrequency and ending with MaximumFrequency. Spacings between the points are determined either by StepSize or by NumberOfPoints where the number of the points has to be specified. Setting one the properties automatically updates the other accordingly.
See Also