예제 #1
0
 public static CellArray Vector(int Length)
 {
     return(CellArray.Vector(Length, CellAffinity.DOUBLE));
 }
예제 #2
0
 public static CellArray Matrix(int RowLength, int ColumnLength, CellAffinity Affinity)
 {
     return(CellArray.Matrix(RowLength, ColumnLength, new Cell(Affinity)));
 }
예제 #3
0
 public static CellArray Vector(int Length, CellAffinity Affinity)
 {
     return(CellArray.Vector(Length, new Cell(Affinity)));
 }