Hi there,
I have a Java process that writes HDF5 files with the following
approximate structure:
group "xxx" {
group "yyy" {
dataset {}
dataset {}
}
group "zzz" {
dataset {}
dataset {}
}
}
where dataset is a rank one dataspace having a comp
On Thu, 2011-12-01 at 19:22 +1300, Jeremy Reeve wrote:
> Hi there,
>
>
> I have a Java process that writes HDF5 files with the following
> approximate structure:
>
> group "xxx" {
>
> group "yyy" {
>
> dataset {}
> dataset {}
>
> }
>
> group "zzz" {
>
> d
Hi,
FWIW:
/* Taken from R/src/main/unique.c */
static int requal(SEXP x, int i, SEXP y, int j)
{
if (i < 0 || j < 0) return 0;
if (!ISNAN(REAL(x)[i]) && !ISNAN(REAL(y)[j]))
return (REAL(x)[i] == REAL(y)[j]);
else if (R_IsNA(REAL(x)[i]) && R_IsNA(REAL(y)[j])) return 1;
els
On 11-12-01 8:40 PM, Hervé Pagès wrote:
Hi,
FWIW:
/* Taken from R/src/main/unique.c */
static int requal(SEXP x, int i, SEXP y, int j)
{
if (i< 0 || j< 0) return 0;
if (!ISNAN(REAL(x)[i])&& !ISNAN(REAL(y)[j]))
return (REAL(x)[i] == REAL(y)[j]);
else if (R_IsNA(REA