Encog.ML.Data.Specific.BiPolarMLData.BiPolarMLData C# (CSharp) Method

BiPolarMLData() public method

Construct this object with the specified data.
public BiPolarMLData ( bool d ) : System
d bool The data to create this object with.
return System
        public BiPolarMLData(bool[] d)
        {
            _data = new bool[d.Length];
            for (int i = 0; i < d.Length; i++)
            {
                _data[i] = d[i];
            }
        }

Same methods

BiPolarMLData::BiPolarMLData ( int size ) : System