Ejemplo n.º 1
0
 public void SetInputsForBMI(Operations operation, double weight, double height)
 {
     operation.Operand1 = weight;
     operation.Operand2 = height;
 }
Ejemplo n.º 2
0
 public void SetInputsForMartix(Operations operation, int[,] M1, int[,] M2)
 {
     operation.Matrix1 = M1;
     operation.Matrix2 = M2;
 }
Ejemplo n.º 3
0
 public void SetOperands(Operations operation, double FirstArgument, double SecondArgument)
 {
     operation.Operand1 = FirstArgument;
     operation.Operand2 = SecondArgument;
 }