Package mikera.matrixx.impl

Examples of mikera.matrixx.impl.VectorMatrixMN.subMatrix()


 
    // general M*N matrix
    VectorMatrixMN mmn=new VectorMatrixMN(6 ,7);
    randomise(mmn);
    doGenericTests(mmn);
    doGenericTests(mmn.subMatrix(1, 4, 1, 5));
 
    // small 2*2 matrix
    mmn=new VectorMatrixMN(2,2);
    doGenericTests(mmn);
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.