Example #1
0
        private void classificationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ClustersAnalysis analysis = new ClustersAnalysis(manager.clOutput);

            analysis.analizeCluster = ClassifyClusters;
            analysis.Show();
        }
Example #2
0
        private void clusterAnalysisToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ClustersAnalysis analysis = new ClustersAnalysis(manager.clOutput, true);

            analysis.analizeCluster = AnCluster;
            analysis.Show();
        }
Example #3
0
        private void classificationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ClustersAnalysis analysis = new ClustersAnalysis(manager.clOutput);
            analysis.analizeCluster = ClassifyClusters;
            analysis.Show();

        }
Example #4
0
 private void clusterAnalysisToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ClustersAnalysis analysis = new ClustersAnalysis(manager.clOutput,true);
     analysis.analizeCluster = AnCluster;
     analysis.Show();
 }