Examples of DiscreteMatrix


Examples of org.cipres.treebase.domain.matrix.DiscreteMatrix

   *
   * @param xmlMatrix
   * @return
   */
  private Matrix fromXmlToTreeBase(CategoricalMatrix xmlMatrix) {
    DiscreteMatrix tbMatrix = new DiscreteMatrix();
    DiscreteMatrixJDBC matrixJDBC = new DiscreteMatrixJDBC(tbMatrix, xmlMatrix, this);
    List<MatrixColumnJDBC> columnJDBCs = new ArrayList<MatrixColumnJDBC>();
    long[] colIds = matrixJDBC.getColIDs();
    long[] rowIds = matrixJDBC.getRowIDs();   
    List<DiscreteMatrixElementJDBC> elements = new ArrayList<DiscreteMatrixElementJDBC>();
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.