Package org.renjin.primitives.vector

Examples of org.renjin.primitives.vector.ComputingIntVector


      public int apply(int index) {
        return (index % rows) + 1;
      }
    };

    return new ComputingIntVector(fn, rows * cols, AttributeMap.dim(rows, cols));
  }
View Full Code Here


      @Override
      public int apply(int index) {
        return (index / rows) + 1;
      }
    };
    return new ComputingIntVector(fn, rows * cols, AttributeMap.dim(rows, cols));
  }
View Full Code Here

TOP

Related Classes of org.renjin.primitives.vector.ComputingIntVector

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.