Displaying 8 results from an estimated 8 matches for "r_max_col".
2005 Jan 03
1
row ("FORTRAN") order?
Reading about 'R_max_col' in "Writing R extensions", Version
2.1.0,(2005-01-03), I find:
"Given the nr by nc matrix matrix in row ("FORTRAN") order, ..."
Looks like a contradiction to me, since FORTRAN stores matrices
columnwise. So is this a documentation bug?
--
G?ran Brostr?m...
2013 Apr 17
1
stack imbalance in max.col for non-real matrices
...CADR(args));
int nr = nrows(m), nc = ncols(m), nprot = 1;
- if (TYPEOF(m) != REALSXP) PROTECT(m = coerceVector(m, REALSXP));
+ if (TYPEOF(m) != REALSXP) {
+ PROTECT(m = coerceVector(m, REALSXP));
+ nprot++;
+ }
SEXP ans = allocVector(INTSXP, nr);
PROTECT(ans);
R_max_col(REAL(m), &nr, &nc, INTEGER(ans), &method);
Thanks,
Michael
[[alternative HTML version deleted]]
2007 Jan 30
1
Solaris 10 compilation issue
...eFile platform.o
lminfl_ registration.o
deflateInit2_ connections.o
N01_kind RNG.o
do_machine names.o
libintl_dcigettext ../extra/intl/libintl.a(dcgettext.o)
R_max_col registration.o
R_ClearerrConsole connections.o
pcre_maketables character.o
spline_eval registration.o
spline_coef registration.o
R_Busy main.o
R_approx...
2007 Jan 30
1
Difficulty with compiling R-2.4.1 on solaris 10
...eFile platform.o
lminfl_ registration.o
deflateInit2_ connections.o
N01_kind RNG.o
do_machine names.o
libintl_dcigettext ../extra/intl/libintl.a(dcgettext.o)
R_max_col registration.o
R_ClearerrConsole connections.o
pcre_maketables character.o
spline_eval registration.o
spline_coef registration.o
R_Busy main.o
R_approx...
2007 Jan 30
0
R Compiling issue
...ration.o
deflateEnd connections.o
ptr_R_EditFile ../unix/libunix.a(edit.o)
inflateEnd connections.o
Rf_lchoose arithmetic.o
R_ChooseFile platform.o
lminfl_ registration.o
deflateInit2_ connections.o
N01_kind RNG.o
do_machine names.o
libintl_dcigettext ../extra/intl/libintl.a(dcgettext.o)
R_max_col registration.o
R_ClearerrConsole connections.o
pcre_maketables character.o
spline_eval registration.o
spline_coef registration.o
R_Busy main.o
R_approx registration.o
Rf_dnf arithmetic.o
Rf_dnt arithmetic.o
Rf_pnf arithmetic.o
Rf_pnt arithmetic.o
Rf_qnf arithmetic.o
Rf_qnt arithmetic.o...
2007 Jan 30
0
Issue with compiling R on solaris 10
...eFile platform.o
lminfl_ registration.o
deflateInit2_ connections.o
N01_kind RNG.o
do_machine names.o
libintl_dcigettext ../extra/intl/libintl.a(dcgettext.o)
R_max_col registration.o
R_ClearerrConsole connections.o
pcre_maketables character.o
spline_eval registration.o
spline_coef registration.o
R_Busy main.o
R_approx...
2005 Oct 06
0
R-2.2.0 is released
...rs passed to .C() are now passed as unsigned char *
rather than as SEXPs. (Wish of Keith Frost, PR#7853)
o The search for symbols in a .C/.Call/... call without a
package argument now searches for an enclosing namespace and
so finds functions defined within functions in a namespace.
o R_max_col() has new (5th) argument '*ties_meth' allowing
non-random behavior in the case of ties.
o The header files have been rationalized: the BLAS routine
LSAME is now declared in BLAS.h not Linpack.h, Applic.h no
longer duplicates routines from Linpack.h, and Applic.h is
divided into API...
2005 Oct 06
0
R-2.2.0 is released
...rs passed to .C() are now passed as unsigned char *
rather than as SEXPs. (Wish of Keith Frost, PR#7853)
o The search for symbols in a .C/.Call/... call without a
package argument now searches for an enclosing namespace and
so finds functions defined within functions in a namespace.
o R_max_col() has new (5th) argument '*ties_meth' allowing
non-random behavior in the case of ties.
o The header files have been rationalized: the BLAS routine
LSAME is now declared in BLAS.h not Linpack.h, Applic.h no
longer duplicates routines from Linpack.h, and Applic.h is
divided into API...