Displaying 4 results from an estimated 4 matches for "arraysubscript".
Did you mean:
  array_subscript
  
2001 Apr 11
1
a couple of ideas/proposals
.... 
     I'm starting to think that the right abstraction for hdf5 is as
  arrays (not dataframes) since the slabs are homogeneous. For us they
  are just ints or floats but they can be arbitrary so maybe the
  abstraction really is dataframe.
     In any event, the interesting question is about arraySubscript.
  (and I guess other similar functionality).
     Currently this gets (int dim, SEXP s, SEXP x)
   where s is the subscript argument and x is the object itself. All
  we do with x is to ask it for its dim attribute and potentially its
  DimNames attribute.
     We would like to use arraySubscript...
2010 Sep 08
0
Correction to vec-subset speed patch
...rc/main/subscript.c	(working copy)
@@ -27,7 +27,6 @@
 
  *  makeSubscript()   -- for "[" and "[<-" in ./subset.c and ./subassign.c,
  *			 and "[[<-" with a scalar in ./subassign.c
- *  vectorSubscript() -- for makeSubscript()   {currently unused externally}
  *  arraySubscript()  -- for "[i,j,..." and "[<-..." in ./subset.c, ./subassign.c
  */
 
@@ -411,7 +410,7 @@
     return s;
 }
 
-static SEXP positiveSubscript(SEXP s, int ns, int nx)
+static SEXP nonnegativeSubscript(SEXP s, int ns, int nx)
 {
     SEXP indx;
     int i, zct = 0;
@@ -433,34 +4...
2004 Apr 12
1
R 1.9.0 is release
...vignetteDepends.
    o	Option 'repositories' to list URLs for package repositories
	added.
    o	package.description() has been replaced by packageDescription().
    o	R CMD INSTALL/build now skip Subversion's .svn directories as
	well as CVS directories.
C-LEVEL FACILITIES
    o	arraySubscript and vectorSubscript take a new argument which
	is a function pointer that provides access to character
	strings (such as the names vector) rather than assuming these
	are passed in.
    o	R_CheckUserInterrupt is now described in `Writing R Extensions'
	and there is a new equivalent subroutine...
2004 Apr 12
1
R 1.9.0 is release
...vignetteDepends.
    o	Option 'repositories' to list URLs for package repositories
	added.
    o	package.description() has been replaced by packageDescription().
    o	R CMD INSTALL/build now skip Subversion's .svn directories as
	well as CVS directories.
C-LEVEL FACILITIES
    o	arraySubscript and vectorSubscript take a new argument which
	is a function pointer that provides access to character
	strings (such as the names vector) rather than assuming these
	are passed in.
    o	R_CheckUserInterrupt is now described in `Writing R Extensions'
	and there is a new equivalent subroutine...