/* * Copyright (c) 2013, Ismael Gomez-Miguelez . * This file is part of OSLD-lib (http://https://github.com/ismagom/osld-lib) * * OSLD-lib is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OSLD-lib 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with OSLD-lib. If not, see . */ #include #ifndef MATRIX_ #define MATRIX_ typedef _Complex float cf_t; int matrix_init(void ***m, int sz_x, int sz_y, int elem_sz); void matrix_free(void **q, int sz_x); void matrix_bzero(void **q, int sz_x, int sz_y, int elem_sz); void matrix_fprintf_cf(FILE *f, cf_t **q, int sz_x, int sz_y); void matrix_fprintf_f(FILE *f, float **q, int sz_x, int sz_y); void matrix_copy(void **dst, void **src, int sz_x, int sz_y, int elem_sz); void matrix_dotprod_cf(cf_t **x, cf_t **y, cf_t **out, int sz_x, int sz_y); void matrix_dotprod_float(float **x, float **y, float **out, int sz_x, int sz_y); void matrix_dotprod_int(int **x, int **y, int **out, int sz_x, int sz_y); #endif