Sha256: 0e6a44bd5213ad5020d1ffab2a9297d35431a8e28ced74486e4d342976b3bee1

Contents?: true

Size: 500 Bytes

Versions: 1

Compression:

Stored size: 500 Bytes

Contents

/*
 *  (c) 2021 Murata Mitsuharu
 *  Licensed under the MIT License.
 *  source: https://github.com/Himeyama/C-Gaussian-Filter
 */


#ifndef FROMFILE_H
#define FROMFILE_H

typedef struct __DFloat{
    double* data;
    long size;
} DFloat;

long fsize(const char* filename);
DFloat dFloatFromFile(const char* filename);
void dFloatPrint(DFloat data);
void dFloatFree(DFloat data);
DFloat dFloat2file(const char* filename, DFloat data);
DFloat dFloatFromFileP(const char* filename, double *p);

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
narray-fromfile-0.1.2 ext/fromfile/fromfile.h