public void NextFunction()
 {
     if (activationFunctions.Length > 0)
     {
         FunctionIndex++;
         SetImage();
         perceptron.UpdatePerceptron();
     }
 }
Example #2
0
 private void SetText()
 {
     text.text = possibleWeights[WeightIndex].ToString("0.00");
     perceptron.UpdatePerceptron();
 }