Pin SLFourier.TSLFourierBaseComponent.InputPin
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: TSLFourierBaseComponent
Contents |
Syntax
Delphi:
property InputPin : TSLOWRealComplexSinkPin read FInputPin write FInputPin;
C++ Builder:
__property TSLOWRealComplexSinkPin * InputPin = { read=FInputPin, write=FInputPin };
Summary
The Real(double) or Complex input pin of the FFT.
Description
InputPin is the Real(double) or Complex buffer data input pin
of the component.
You can connect this pin to any pin providing Real(double) or Complex buffer data.
Delphi example:
SLFourier1.InputPin.Connect( SLRandomGen1.OutputPin );
C++ Builder example:
SLFourier1->InputPin->Connect( SLRandomGen1->OutputPin );
Visual C++(MFC) example:
SLFourier1.InputPin.Connect( SLRandomGen1.OutputPin );
C# example:
fourier1.InputPin.Connect( randomGen1.OutputPin );