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