Examples of SkewSymmetricSparseMatrix


Examples of com.rapidminer.data.SkewSymmetricSparseMatrix

    protected void InitModel()
    {
      super.InitModel();

      // create data structure
      diff_matrix_like = new SkewSymmetricSparseMatrix(MaxItemID + 1);
      freq_matrix_like = new SymetricSparseMatrix_i(MaxItemID + 1);
      diff_matrix_dislike = new SkewSymmetricSparseMatrix(MaxItemID + 1);
      freq_matrix_dislike = new SymetricSparseMatrix_i(MaxItemID + 1);
      user_average = new double[MaxUserID + 1];
    }
View Full Code Here

Examples of com.rapidminer.data.SkewSymmetricSparseMatrix

    ///
    protected void InitModel()
    {
      super.InitModel();
      // create data structure
      diff_matrix = new SkewSymmetricSparseMatrix(MaxItemID + 1);
      freq_matrix = new SymetricSparseMatrix_i(MaxItemID + 1);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.