factorization.java

来自「dragontoolkit用于机器学习」· Java 代码 · 共 39 行

JAVA
39
字号
package dragon.matrix.factorize;import dragon.matrix.*;/** * <p>Interface of matrix factorization</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface Factorization {    /**     * Factorizes the given matrix     * @param matrix the matrix for factorization     * @param dimension the number of dimensions for the middle matrix     */    public void factorize(SparseMatrix matrix, int dimension);    /**     * Gets the left matrix     * @return the left matrix     */    public DoubleDenseMatrix getLeftMatrix();    /**     *Gets the right matrix     * @return the right matrix     */    public DoubleDenseMatrix getRightMatrix();    /**     * Gets the middle matrix     * @return the middle matrix     */    public DoubleDenseMatrix getMiddleMatrix();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?