Exemple #1
0
 public static T[,] op_Concatenate(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Concatenate(matrix, another) : ZipperSpace.op_Concatenate(matrix, another);
Exemple #2
0
 public static T[,] op_Division(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Division(matrix, another) : ZipperSpace.op_Division(matrix, another);
Exemple #3
0
 public static T[,] op_BitwiseOr(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_BitwiseOr(matrix, another) : ZipperSpace.op_BitwiseOr(matrix, another);
Exemple #4
0
 public static T[,] op_Multiply(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Multiply(matrix, another) : ZipperSpace.op_Multiply(matrix, another);
Exemple #5
0
 public static T[,] op_Subtraction <T>(this T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Subtraction(matrix, another) : ZipperSpace.op_Subtraction(matrix, another);