Exemplo n.º 1
0
 public static T[,] op_Concatenate(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Concatenate(matrix, another) : ZipperSpace.op_Concatenate(matrix, another);
Exemplo n.º 2
0
 public static T[,] op_Division(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Division(matrix, another) : ZipperSpace.op_Division(matrix, another);
Exemplo n.º 3
0
 public static T[,] op_BitwiseOr(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_BitwiseOr(matrix, another) : ZipperSpace.op_BitwiseOr(matrix, another);
Exemplo n.º 4
0
 public static T[,] op_Multiply(T[,] matrix, T[,] another) => matrix.ColToRow(another) ? ProductSpace.op_Multiply(matrix, another) : ZipperSpace.op_Multiply(matrix, another);
Exemplo n.º 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);