Accord.Collections.SPCell.SPCell C# (CSharp) Method

SPCell() public method

Initializes a new instance of the SPCell class.
public SPCell ( double corner, double width ) : Accord.Math
corner double The starting point of this spatial cell.
width double The widths of this spatial cell.
return Accord.Math
        public SPCell(double[] corner, double[] width)
        {
            this.corner = corner.MemberwiseClone();
            this.width = width.MemberwiseClone();
        }

Same methods

SPCell::SPCell ( int dimension ) : Accord.Math