Package mikera.vectorz.impl

Examples of mikera.vectorz.impl.DoubleScalar


  }

  @Test
  public void genericTests() {
    testScalar(new Scalar(1.0));
    testScalar(new DoubleScalar(1.0)); // deprecated but still test it
    testScalar(ImmutableScalar.create(1.33));
    testScalar(Vector.of(1, 2, 3).slice(1));
    testScalar(Vector.of(1, 2, 3, 4, 5, 6).slice(1));
   
    testScalar(MatrixIndexScalar.wrap(IdentityMatrix.create(3),2,2));
View Full Code Here

TOP

Related Classes of mikera.vectorz.impl.DoubleScalar

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.