예제 #1
0
파일: Matrix.cs 프로젝트: scch1002/Math
 private static Numeric[][] InitilizeMatrix(int rows, int columns)
 {
     var matrix = new Numeric[rows][];
     for (int row = 0; row < rows; row++)
     {
         matrix[row] = new Numeric[columns];
     }
     return matrix;
 }
예제 #2
0
파일: Matrix.cs 프로젝트: scch1002/Math
 public Matrix(Numeric[][] matrix)
 {
     _matrix = matrix;
 }
예제 #3
0
파일: Division.cs 프로젝트: scch1002/Math
 public Division(Numeric leftOperand, Numeric rightOperand)
 {
     _leftOperand = leftOperand;
     _rightOperand = rightOperand;
 }
예제 #4
0
 public Multiplication(Numeric leftOperand, Numeric rightOperand)
 {
     _leftOperand = leftOperand;
     _rightOperand = rightOperand;
 }
예제 #5
0
 public Subtraction(Numeric leftOperand, Numeric rightOperand)
 {
     _leftOperand = leftOperand;
     _rightOperand = rightOperand;
 }
예제 #6
0
파일: Addition.cs 프로젝트: scch1002/Math
 public Addition(Numeric leftOperand, Numeric rightOperand)
 {
     _leftOperand  = leftOperand;
     _rightOperand = rightOperand;
 }
예제 #7
0
파일: Addition.cs 프로젝트: scch1002/Math
 public Addition(Numeric leftOperand, Numeric rightOperand)
 {
     _leftOperand = leftOperand;
     _rightOperand = rightOperand;
 }