MyMediaLite.Correlation.BinaryCosine.BinaryCosine C# (CSharp) Method

BinaryCosine() public method

Copy constructor. Creates an object of type Cosine from an existing correlation matrix
public BinaryCosine ( CorrelationMatrix correlation_matrix ) : System
correlation_matrix CorrelationMatrix the correlation matrix to copy
return System
        public BinaryCosine(CorrelationMatrix correlation_matrix)
            : base(correlation_matrix.NumberOfRows)
        {
            this.data = correlation_matrix.data;
        }

Same methods

BinaryCosine::BinaryCosine ( int num_entities ) : System