public static CellArray Vector(int Length) { return(CellArray.Vector(Length, CellAffinity.DOUBLE)); }
public static CellArray Matrix(int RowLength, int ColumnLength, CellAffinity Affinity) { return(CellArray.Matrix(RowLength, ColumnLength, new Cell(Affinity))); }
public static CellArray Vector(int Length, CellAffinity Affinity) { return(CellArray.Vector(Length, new Cell(Affinity))); }