Examples of DeferredSum


Examples of org.renjin.primitives.summary.DeferredSum

    boolean haveDouble = false;
    double imaginarySum = 0;
    boolean haveComplex = false;

    if(arguments.length() == 1 && arguments.get(0) instanceof DoubleVector && !removeNA) {
      return new DeferredSum((Vector) arguments.get(0), AttributeMap.EMPTY);
    }

    for(SEXP argument : arguments) {
      if(argument instanceof IntVector || argument instanceof LogicalVector) {
        AtomicVector vector = (AtomicVector)argument;
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.