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

Examples of net.fec.openrq.util.linearalgebra.vector.source.VectorSource


     * @param row
     * @return a row vector source from a matrix source and a row index
     */
    public static VectorSource asRowVectorSource(final MatrixSource source, final int row) {

        return new VectorSource() {

            @Override
            public int length() {

                return source.columns();
View Full Code Here


     * @param column
     * @return a column vector source from a matrix source and a column index
     */
    public static VectorSource asColumnVectorSource(final MatrixSource source, final int column) {

        return new VectorSource() {

            @Override
            public int length() {

                return source.rows();
View Full Code Here

TOP

Related Classes of net.fec.openrq.util.linearalgebra.vector.source.VectorSource

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.