Ejemplo n.º 1
0
        private void CorrelationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            correlation = Utility.Correlation(firstResearch.PropertyValues, secondResearch.PropertyValues);
            var FFTWindow = new CorellationWindow(correlation);

            FFTWindow.Show();
        }
Ejemplo n.º 2
0
        private void SecondAutocorrelationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var correlationWindow = new CorellationWindow(HasSelection2() ? GetSelectedResearch2() : secondResearch);

            correlationWindow.Show();
        }
Ejemplo n.º 3
0
        private void FirstAurocorrelationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var correlationWindow = new CorellationWindow(HasSelection1() ? GetSelectedResearch1() : firstResearch);

            correlationWindow.Show();
        }