Examples of dimensions()


Examples of r.data.RDouble.dimensions()

        }
        RDouble x = Convert.coerceToDoubleError(xArg, ast).materialize();
        if (!x.isTemporary()) {
            x = RDoubleFactory.copy(x);
        }
        int[] dims = x.dimensions();
        if (dims == null || dims.length != 2) {
            int size = x.size();
            int[] ndims = new int[] {size, 1};
            x = (RDouble) x.setDimensions(ndims); // note: x can be a scalar
            dims = ndims;
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.