Examples of colonSequence()


Examples of org.renjin.primitives.sequence.Sequences.colonSequence()

  }


  private SEXP colon(double n1, double n2) {
    Sequences fn = new Sequences();
    return fn.colonSequence(topLevelContext, new DoubleArrayVector(n1), new DoubleArrayVector(n2));
  }

  @Test
  public void assignment() {
    assertThat( eval( "x <- 1:3 "), elementsEqualTo(1, 2, 3));
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.