com.actelion.research.util.datamodel.ModelXYIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.util.datamodel;
import com.actelion.research.calc.Matrix;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
*
*
* ModelDataXY
* Copyright: Actelion Ltd., Inc. All Rights Reserved
* This software is the proprietary information of Actelion Pharmaceuticals, Ltd.
* Use is subject to license terms.
* @author Modest von Korff
* @version 1.0
* Aug 4, 2011 MvK: Start implementation
*/
public class ModelXYIndex extends ModelXY {
// Index of the X row origin in the original file.
// Becomes important when rows in X and Y were removed.
public List liIndex;
public ModelXYIndex() {
}
public ModelXYIndex(Matrix x, Matrix y) {
super(x,y);
}
public ModelXYIndex(int rows, int colsX, int colsY) {
super(rows, colsX, colsY);
}
/**
* Deep copy constructor
* @param dataXY
*/
public ModelXYIndex(ModelXYIndex dataXY) {
super(dataXY);
liIndex = new ArrayList(dataXY.X.rows());
for (int index : dataXY.liIndex) {
liIndex.add(index);
}
}
public ModelXYIndex(ModelXY dataXY) {
super(dataXY);
}
/**
*
* @param indexStart inclusive
* @param indexEnd exclusive
* @return
*/
public ModelXYIndex sub(int indexStart, int indexEnd){
List liIndexRow = new ArrayList<>(indexEnd-indexStart);
for (int i = indexStart; i < indexEnd; i++) {
liIndexRow.add(i);
}
return sub(liIndexRow);
}
public ModelXYIndex sub(List liIndexRow){
ModelXYIndex modelDataXY = new ModelXYIndex();
modelDataXY.X = X.getSubMatrix(liIndexRow);
modelDataXY.Y = Y.getSubMatrix(liIndexRow);
modelDataXY.liIndex = new ArrayList<>(liIndexRow);
return modelDataXY;
}
/**
* Rows are copied from this into target.
* @param liIndexRow
* @param modelXYIndexTarget
*/
public void sub(List liIndexRow, ModelXYIndex modelXYIndexTarget){
if((modelXYIndexTarget.X.rows()!=liIndexRow.size()) || (modelXYIndexTarget.Y.rows()!=liIndexRow.size())) {
throw new RuntimeException("Wrong number of rows!");
}
for (int i = 0; i < liIndexRow.size(); i++) {
int index = liIndexRow.get(i);
double [] a = X.getRow(index);
modelXYIndexTarget.X.setRow(i, a);
double [] b = Y.getRow(index);
modelXYIndexTarget.Y.setRow(i, b);
}
}
public ModelXYIndex getVariableSelectionOnX(IntVec iv) {
int colsNew = iv.getBitsSet();
Matrix XNew = new Matrix(X.rows(), colsNew);
int n = iv.sizeBits();
int colNew = 0;
for (int i = 0; i < n; i++) {
if(iv.isBitSet(i)){
XNew.copyColumn(X, i, colNew++);
}
}
ModelXYIndex modelXYIndexSelectedCols = new ModelXYIndex();
modelXYIndexSelectedCols.X = XNew;
modelXYIndexSelectedCols.Y = new Matrix(Y);
if(liIndex!=null) {
modelXYIndexSelectedCols.liIndex = new ArrayList<>(X.rows());
for (int index : liIndex) {
modelXYIndexSelectedCols.liIndex.add(index);
}
}
return modelXYIndexSelectedCols;
}
@Override
public ModelXYIndex getDeepClone() {
return new ModelXYIndex(this);
}
/**
*
* @return Deep copy.
*/
public List getAsListWithIndex(){
int rows = X.rows();
List li = new ArrayList<>(rows);
for (int i = 0; i < rows; i++) {
XYIndex XY = new XYIndex(X.getRowCopy(i), Y.getRowCopy(i));
if(liIndex!=null){
XY.index = liIndex.get(i);
}
li.add(XY);
}
return li;
}
public ModelXYIndex getSortedByY(int colY){
List li = getAsListWithIndex();
Collections.sort(li, XY.getComparatorY(colY));
double [][] arrX = new double[li.size()][];
double [][] arrY = new double[li.size()][];
List liIndex = new ArrayList<>(li.size());
for (int i = 0; i < li.size(); i++) {
arrX[i]=li.get(i).x;
arrY[i]=li.get(i).y;
liIndex.add(li.get(i).index);
}
ModelXYIndex modelSorted = new ModelXYIndex();
modelSorted.X = new Matrix(arrX);
modelSorted.Y = new Matrix(arrY);
modelSorted.liIndex=liIndex;
return modelSorted;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy