Package net.fec.openrq.util.linearalgebra.matrix.source

Examples of net.fec.openrq.util.linearalgebra.matrix.source.RandomMatrixSource


     *            * @param random the random generator instance
     * @return a random matrix source
     */
    public static MatrixSource asRandomSource(int rows, int columns, Random random) {

        return new RandomMatrixSource(rows, columns, random);
    }
View Full Code Here

TOP

Related Classes of net.fec.openrq.util.linearalgebra.matrix.source.RandomMatrixSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.