Package org.renjin.primitives.summary

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

Related Classes of org.renjin.primitives.summary.DeferredSum

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.