Exemple #1
0
 private void button1_Click(object sender, EventArgs e)
 {
     DataLoader dl = new DataLoader("table.csv");
     Factors f = new Factors(dl.Data);
     f.Run();
     Ratios r = new Ratios(f);
     r.Run();
     Function func = new Function(r);
     NNMaximizer m = new NNMaximizer(r);
     m.Run();
     int i = 0;
 }
Exemple #2
0
 public Ratios(Factors factors)
 {
     _Factors = factors;
     _Ratios = new Dictionary<string, List<double>>();
 }