Accord.Controls.WavechartBox.Show C# (CSharp) Method

Show() public static method

Displays a Wavechart with the specified signal.
public static Show ( Signal signal, int channel, string title = "Wavechart", bool nonBlocking = false ) : WavechartBox
signal Signal The signal object to display.
channel int The channel to be displayed.
title string The title for the data window.
nonBlocking bool If set to true, the caller will continue /// executing while the form is shown on screen. If set to false, /// the caller will be blocked until the user closes the form. Default /// is false.
return WavechartBox
        public static WavechartBox Show(Signal signal, int channel = 0,
            string title = "Wavechart", bool nonBlocking = false)
        {
            var tuple = Tuple.Create(signal, channel);
            return show(title, nonBlocking, tuple);
        }

Same methods

WavechartBox::Show ( float array, String title, bool nonBlocking = false ) : WavechartBox