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

org.solovyev.common.math.matrix.DoubleSparseMatrix Maven / Gradle / Ivy

The newest version!
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/3/11
 * Time: 10:59 AM
 */
public class DoubleSparseMatrix extends AbstractSparseMatrix implements MathMatrix {

	public DoubleSparseMatrix(String fName, MatrixFileFormat fileFormat) throws IOException, IllegalArgumentException {
		super(fName, fileFormat);
	}

	public DoubleSparseMatrix(Graph g) {
		super(g);
	}

	public DoubleSparseMatrix(int m, int n) {
		super(m, n);
	}

	public DoubleSparseMatrix(int m) {
		super(m);
	}

	public DoubleSparseMatrix() {
	}

	@NotNull
	@Override
	public MatrixHelper getMatrixHelper() {
		return MatrixHelper.Helper.double_.getHelper();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy