net.librec.math.structure.MatrixAssigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of librec-core Show documentation
Show all versions of librec-core Show documentation
A repackaged librec-core fork
The newest version!
package net.librec.math.structure;
/**
* Apply the function to the argument and return the result
*
* @author Keqiang Wang (email: [email protected])
*/
public interface MatrixAssigner {
double getValue(int row, int column, double value);
}