
org.solovyev.common.math.matrix.DoubleArrayMatrix Maven / Gradle / Ivy
package org.solovyev.common.math.matrix;
import org.jetbrains.annotations.NotNull;
import org.solovyev.common.math.graph.Graph;
import org.solovyev.common.math.matrix.helpers.MatrixHelper;
import java.io.IOException;
/**
* User: serso
* Date: 3/6/11
* Time: 11:49 AM
*/
public class DoubleArrayMatrix extends AbstractArrayMatrix implements MathMatrix {
public DoubleArrayMatrix() {
}
public DoubleArrayMatrix(int m) {
super(m);
}
public DoubleArrayMatrix(int m, int n) {
super(m, n);
}
public DoubleArrayMatrix(int m, int n, Double defaultValue) {
super(m, n, defaultValue);
}
public DoubleArrayMatrix(String fName, MatrixFileFormat fileFormat) throws IOException, IllegalArgumentException {
super(fName, fileFormat);
}
public DoubleArrayMatrix(Graph, Double> g) {
super(g);
}
@NotNull
@Override
public MatrixHelper getMatrixHelper() {
return MatrixHelper.Helper.double_.getHelper();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy