#include #include #include "mex.h" #include "matrix.h" /* * Copyright (C) 2008, Robert Oostenveld, F.C. Donders Ccentre for Cognitive Neuroimaging * Copyright (C) 2007, Peter Desain, Nijmegen Institute for Cognition and Information * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * * $Id: read_16bit.c 7123 2012-12-06 21:21:38Z roboos $ */ void mexFunction (int nlhs, mxArray * plhs[], int nrhs, const mxArray * prhs[]) { FILE *fp; mxArray *dat; double *dat_p; char *filename; short int *buf; long int offset, numwords, fnlen, i, j, num, b1, b2, b3; if (nrhs != 3) mexErrMsgTxt ("Invalid number of input arguments"); if (mxGetM(prhs[1])!=1 || mxGetN(prhs[1])!=1) mexErrMsgTxt ("Invalid dimension for input argument 2"); if (mxGetM(prhs[2])!=1 || mxGetN(prhs[2])!=1) mexErrMsgTxt ("Invalid dimension for input argument 3"); /* get the filename */ fnlen = mxGetN (prhs[0]); filename = mxCalloc(fnlen+1, sizeof(char)); mxGetString(prhs[0], filename, fnlen+1); /* get values and typecast to integer */ offset = (long int)(mxGetScalar (prhs[1])); numwords = (long int)(mxGetScalar (prhs[2])); /* printf("filename = %s\n", filename); printf("fnlen = %d\n", fnlen); printf("offset = %d\n", offset); printf("numwords = %d\n", numwords); */ /* open the file and read the desired bytes */ fp = fopen(filename, "rb"); if (fp==NULL) { printf("error opening file: %s\n", filename); return; } fseek(fp, offset, SEEK_SET); buf = mxCalloc(numwords, sizeof(short)); num = fread(buf, sizeof(short), numwords, fp); if (num