All Downloads are FREE. Search and download functionalities are using the official Maven repository.

umcg.genetica.math.matrix.DoubleMatrixDatasetAC Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package umcg.genetica.math.matrix;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 *
 * @author juha
 */
@Deprecated
public abstract class DoubleMatrixDatasetAC {

    public enum LoadLabels {

        LOAD_BOTH, LOAD_ROWS, LOAD_COLUMNS, DONT_LOAD
    };

    public Map hashRows = new HashMap();
    public Map hashCols = new HashMap();
    
    public List rowObjects = null;
    public List colObjects = null;
    public int nrRows;
    public int nrCols;

    public abstract double[] get(int x);

    public abstract double get(int x, int y);

    public abstract void recalculateHashMaps();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy