/gsl/gsl_matrix_ulong.h
https://github.com/mantidproject/3rdpartyincludes · C Header · 358 lines · 268 code · 64 blank · 26 comment · 17 complexity · 1c1254122924d301819d8bd6d9fb4806 MD5 · raw file
- /* matrix/gsl_matrix_ulong.h
- *
- * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough
- *
- * 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 3 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
- #ifndef __GSL_MATRIX_ULONG_H__
- #define __GSL_MATRIX_ULONG_H__
- #if !defined( GSL_FUN )
- # if !defined( GSL_DLL )
- # define GSL_FUN extern
- # elif defined( BUILD_GSL_DLL )
- # define GSL_FUN extern __declspec(dllexport)
- # else
- # define GSL_FUN extern __declspec(dllimport)
- # endif
- #endif
- #include <stdlib.h>
- #include <gsl/gsl_types.h>
- #include <gsl/gsl_errno.h>
- #include <gsl/gsl_inline.h>
- #include <gsl/gsl_check_range.h>
- #include <gsl/gsl_vector_ulong.h>
- #undef __BEGIN_DECLS
- #undef __END_DECLS
- #ifdef __cplusplus
- # define __BEGIN_DECLS extern "C" {
- # define __END_DECLS }
- #else
- # define __BEGIN_DECLS /* empty */
- # define __END_DECLS /* empty */
- #endif
- __BEGIN_DECLS
- typedef struct
- {
- size_t size1;
- size_t size2;
- size_t tda;
- unsigned long * data;
- gsl_block_ulong * block;
- int owner;
- } gsl_matrix_ulong;
- typedef struct
- {
- gsl_matrix_ulong matrix;
- } _gsl_matrix_ulong_view;
- typedef _gsl_matrix_ulong_view gsl_matrix_ulong_view;
- typedef struct
- {
- gsl_matrix_ulong matrix;
- } _gsl_matrix_ulong_const_view;
- typedef const _gsl_matrix_ulong_const_view gsl_matrix_ulong_const_view;
- /* Allocation */
- GSL_FUN gsl_matrix_ulong *
- gsl_matrix_ulong_alloc (const size_t n1, const size_t n2);
- GSL_FUN gsl_matrix_ulong *
- gsl_matrix_ulong_calloc (const size_t n1, const size_t n2);
- GSL_FUN gsl_matrix_ulong *
- gsl_matrix_ulong_alloc_from_block (gsl_block_ulong * b,
- const size_t offset,
- const size_t n1,
- const size_t n2,
- const size_t d2);
- GSL_FUN gsl_matrix_ulong *
- gsl_matrix_ulong_alloc_from_matrix (gsl_matrix_ulong * m,
- const size_t k1,
- const size_t k2,
- const size_t n1,
- const size_t n2);
- GSL_FUN gsl_vector_ulong *
- gsl_vector_ulong_alloc_row_from_matrix (gsl_matrix_ulong * m,
- const size_t i);
- GSL_FUN gsl_vector_ulong *
- gsl_vector_ulong_alloc_col_from_matrix (gsl_matrix_ulong * m,
- const size_t j);
- GSL_FUN void gsl_matrix_ulong_free (gsl_matrix_ulong * m);
- /* Views */
- GSL_FUN _gsl_matrix_ulong_view
- gsl_matrix_ulong_submatrix (gsl_matrix_ulong * m,
- const size_t i, const size_t j,
- const size_t n1, const size_t n2);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_row (gsl_matrix_ulong * m, const size_t i);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_column (gsl_matrix_ulong * m, const size_t j);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_diagonal (gsl_matrix_ulong * m);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_subdiagonal (gsl_matrix_ulong * m, const size_t k);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_superdiagonal (gsl_matrix_ulong * m, const size_t k);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_subrow (gsl_matrix_ulong * m, const size_t i,
- const size_t offset, const size_t n);
- GSL_FUN _gsl_vector_ulong_view
- gsl_matrix_ulong_subcolumn (gsl_matrix_ulong * m, const size_t j,
- const size_t offset, const size_t n);
- GSL_FUN _gsl_matrix_ulong_view
- gsl_matrix_ulong_view_array (unsigned long * base,
- const size_t n1,
- const size_t n2);
- GSL_FUN _gsl_matrix_ulong_view
- gsl_matrix_ulong_view_array_with_tda (unsigned long * base,
- const size_t n1,
- const size_t n2,
- const size_t tda);
- GSL_FUN _gsl_matrix_ulong_view
- gsl_matrix_ulong_view_vector (gsl_vector_ulong * v,
- const size_t n1,
- const size_t n2);
- GSL_FUN _gsl_matrix_ulong_view
- gsl_matrix_ulong_view_vector_with_tda (gsl_vector_ulong * v,
- const size_t n1,
- const size_t n2,
- const size_t tda);
- GSL_FUN _gsl_matrix_ulong_const_view
- gsl_matrix_ulong_const_submatrix (const gsl_matrix_ulong * m,
- const size_t i, const size_t j,
- const size_t n1, const size_t n2);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_row (const gsl_matrix_ulong * m,
- const size_t i);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_column (const gsl_matrix_ulong * m,
- const size_t j);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_diagonal (const gsl_matrix_ulong * m);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_subdiagonal (const gsl_matrix_ulong * m,
- const size_t k);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_superdiagonal (const gsl_matrix_ulong * m,
- const size_t k);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_subrow (const gsl_matrix_ulong * m, const size_t i,
- const size_t offset, const size_t n);
- GSL_FUN _gsl_vector_ulong_const_view
- gsl_matrix_ulong_const_subcolumn (const gsl_matrix_ulong * m, const size_t j,
- const size_t offset, const size_t n);
- GSL_FUN _gsl_matrix_ulong_const_view
- gsl_matrix_ulong_const_view_array (const unsigned long * base,
- const size_t n1,
- const size_t n2);
- GSL_FUN _gsl_matrix_ulong_const_view
- gsl_matrix_ulong_const_view_array_with_tda (const unsigned long * base,
- const size_t n1,
- const size_t n2,
- const size_t tda);
- GSL_FUN _gsl_matrix_ulong_const_view
- gsl_matrix_ulong_const_view_vector (const gsl_vector_ulong * v,
- const size_t n1,
- const size_t n2);
- GSL_FUN _gsl_matrix_ulong_const_view
- gsl_matrix_ulong_const_view_vector_with_tda (const gsl_vector_ulong * v,
- const size_t n1,
- const size_t n2,
- const size_t tda);
- /* Operations */
- GSL_FUN void gsl_matrix_ulong_set_zero (gsl_matrix_ulong * m);
- GSL_FUN void gsl_matrix_ulong_set_identity (gsl_matrix_ulong * m);
- GSL_FUN void gsl_matrix_ulong_set_all (gsl_matrix_ulong * m, unsigned long x);
- GSL_FUN int gsl_matrix_ulong_fread (FILE * stream, gsl_matrix_ulong * m) ;
- GSL_FUN int gsl_matrix_ulong_fwrite (FILE * stream, const gsl_matrix_ulong * m) ;
- GSL_FUN int gsl_matrix_ulong_fscanf (FILE * stream, gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_fprintf (FILE * stream, const gsl_matrix_ulong * m, const char * format);
-
- GSL_FUN int gsl_matrix_ulong_memcpy(gsl_matrix_ulong * dest, const gsl_matrix_ulong * src);
- GSL_FUN int gsl_matrix_ulong_swap(gsl_matrix_ulong * m1, gsl_matrix_ulong * m2);
- GSL_FUN int gsl_matrix_ulong_swap_rows(gsl_matrix_ulong * m, const size_t i, const size_t j);
- GSL_FUN int gsl_matrix_ulong_swap_columns(gsl_matrix_ulong * m, const size_t i, const size_t j);
- GSL_FUN int gsl_matrix_ulong_swap_rowcol(gsl_matrix_ulong * m, const size_t i, const size_t j);
- GSL_FUN int gsl_matrix_ulong_transpose (gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_transpose_memcpy (gsl_matrix_ulong * dest, const gsl_matrix_ulong * src);
- GSL_FUN unsigned long gsl_matrix_ulong_max (const gsl_matrix_ulong * m);
- GSL_FUN unsigned long gsl_matrix_ulong_min (const gsl_matrix_ulong * m);
- GSL_FUN void gsl_matrix_ulong_minmax (const gsl_matrix_ulong * m, unsigned long * min_out, unsigned long * max_out);
- GSL_FUN void gsl_matrix_ulong_max_index (const gsl_matrix_ulong * m, size_t * imax, size_t *jmax);
- GSL_FUN void gsl_matrix_ulong_min_index (const gsl_matrix_ulong * m, size_t * imin, size_t *jmin);
- GSL_FUN void gsl_matrix_ulong_minmax_index (const gsl_matrix_ulong * m, size_t * imin, size_t * jmin, size_t * imax, size_t * jmax);
- GSL_FUN int gsl_matrix_ulong_isnull (const gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_ispos (const gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_isneg (const gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_isnonneg (const gsl_matrix_ulong * m);
- GSL_FUN int gsl_matrix_ulong_add (gsl_matrix_ulong * a, const gsl_matrix_ulong * b);
- GSL_FUN int gsl_matrix_ulong_sub (gsl_matrix_ulong * a, const gsl_matrix_ulong * b);
- GSL_FUN int gsl_matrix_ulong_mul_elements (gsl_matrix_ulong * a, const gsl_matrix_ulong * b);
- GSL_FUN int gsl_matrix_ulong_div_elements (gsl_matrix_ulong * a, const gsl_matrix_ulong * b);
- GSL_FUN int gsl_matrix_ulong_scale (gsl_matrix_ulong * a, const double x);
- GSL_FUN int gsl_matrix_ulong_add_constant (gsl_matrix_ulong * a, const double x);
- GSL_FUN int gsl_matrix_ulong_add_diagonal (gsl_matrix_ulong * a, const double x);
- /***********************************************************************/
- /* The functions below are obsolete */
- /***********************************************************************/
- GSL_FUN int gsl_matrix_ulong_get_row(gsl_vector_ulong * v, const gsl_matrix_ulong * m, const size_t i);
- GSL_FUN int gsl_matrix_ulong_get_col(gsl_vector_ulong * v, const gsl_matrix_ulong * m, const size_t j);
- GSL_FUN int gsl_matrix_ulong_set_row(gsl_matrix_ulong * m, const size_t i, const gsl_vector_ulong * v);
- GSL_FUN int gsl_matrix_ulong_set_col(gsl_matrix_ulong * m, const size_t j, const gsl_vector_ulong * v);
- /***********************************************************************/
- /* inline functions if you are using GCC */
- GSL_FUN INLINE_DECL unsigned long gsl_matrix_ulong_get(const gsl_matrix_ulong * m, const size_t i, const size_t j);
- GSL_FUN INLINE_DECL void gsl_matrix_ulong_set(gsl_matrix_ulong * m, const size_t i, const size_t j, const unsigned long x);
- GSL_FUN INLINE_DECL unsigned long * gsl_matrix_ulong_ptr(gsl_matrix_ulong * m, const size_t i, const size_t j);
- GSL_FUN INLINE_DECL const unsigned long * gsl_matrix_ulong_const_ptr(const gsl_matrix_ulong * m, const size_t i, const size_t j);
- #ifdef HAVE_INLINE
- INLINE_FUN
- unsigned long
- gsl_matrix_ulong_get(const gsl_matrix_ulong * m, const size_t i, const size_t j)
- {
- #if GSL_RANGE_CHECK
- if (GSL_RANGE_COND(1))
- {
- if (i >= m->size1)
- {
- GSL_ERROR_VAL("first index out of range", GSL_EINVAL, 0) ;
- }
- else if (j >= m->size2)
- {
- GSL_ERROR_VAL("second index out of range", GSL_EINVAL, 0) ;
- }
- }
- #endif
- return m->data[i * m->tda + j] ;
- }
- INLINE_FUN
- void
- gsl_matrix_ulong_set(gsl_matrix_ulong * m, const size_t i, const size_t j, const unsigned long x)
- {
- #if GSL_RANGE_CHECK
- if (GSL_RANGE_COND(1))
- {
- if (i >= m->size1)
- {
- GSL_ERROR_VOID("first index out of range", GSL_EINVAL) ;
- }
- else if (j >= m->size2)
- {
- GSL_ERROR_VOID("second index out of range", GSL_EINVAL) ;
- }
- }
- #endif
- m->data[i * m->tda + j] = x ;
- }
- INLINE_FUN
- unsigned long *
- gsl_matrix_ulong_ptr(gsl_matrix_ulong * m, const size_t i, const size_t j)
- {
- #if GSL_RANGE_CHECK
- if (GSL_RANGE_COND(1))
- {
- if (i >= m->size1)
- {
- GSL_ERROR_NULL("first index out of range", GSL_EINVAL) ;
- }
- else if (j >= m->size2)
- {
- GSL_ERROR_NULL("second index out of range", GSL_EINVAL) ;
- }
- }
- #endif
- return (unsigned long *) (m->data + (i * m->tda + j)) ;
- }
- INLINE_FUN
- const unsigned long *
- gsl_matrix_ulong_const_ptr(const gsl_matrix_ulong * m, const size_t i, const size_t j)
- {
- #if GSL_RANGE_CHECK
- if (GSL_RANGE_COND(1))
- {
- if (i >= m->size1)
- {
- GSL_ERROR_NULL("first index out of range", GSL_EINVAL) ;
- }
- else if (j >= m->size2)
- {
- GSL_ERROR_NULL("second index out of range", GSL_EINVAL) ;
- }
- }
- #endif
- return (const unsigned long *) (m->data + (i * m->tda + j)) ;
- }
- #endif
- __END_DECLS
- #endif /* __GSL_MATRIX_ULONG_H__ */