Navigation

Operators and Keywords

Function List:

C++ API

bsxfun-defs.cc File Reference

#include <algorithm>
#include <iostream>
#include "dim-vector.h"
#include "oct-locbuf.h"
#include "lo-error.h"
#include "mx-inlines.cc"
Include dependency graph for bsxfun-defs.cc:
This graph shows which files directly or indirectly include this file:

Defines

#define BSXFUN_OP_DEF(OP, ARRAY)   ARRAY bsxfun_ ## OP (const ARRAY& x, const ARRAY& y)
#define BSXFUN_OP2_DEF(OP, ARRAY, ARRAY1, ARRAY2)   ARRAY bsxfun_ ## OP (const ARRAY1& x, const ARRAY2& y)
#define BSXFUN_REL_DEF(OP, ARRAY)   boolNDArray bsxfun_ ## OP (const ARRAY& x, const ARRAY& y)
#define BSXFUN_OP_DEF_MXLOOP(OP, ARRAY, LOOP)
#define BSXFUN_OP2_DEF_MXLOOP(OP, ARRAY, ARRAY1, ARRAY2, LOOP)
#define BSXFUN_REL_DEF_MXLOOP(OP, ARRAY, LOOP)
#define BSXFUN_STDOP_DEFS_MXLOOP(ARRAY)
#define BSXFUN_STDREL_DEFS_MXLOOP(ARRAY)

Functions

template<class R , class X , class Y >
Array< R > do_bsxfun_op (const Array< X > &x, const Array< Y > &y, void(*op_vv)(size_t, R *, const X *, const Y *), void(*op_sv)(size_t, R *, X, const Y *), void(*op_vs)(size_t, R *, const X *, Y))

Define Documentation

#define BSXFUN_OP2_DEF (   OP,
  ARRAY,
  ARRAY1,
  ARRAY2 
)    ARRAY bsxfun_ ## OP (const ARRAY1& x, const ARRAY2& y)
#define BSXFUN_OP2_DEF_MXLOOP (   OP,
  ARRAY,
  ARRAY1,
  ARRAY2,
  LOOP 
)
Value:
BSXFUN_OP2_DEF(OP, ARRAY, ARRAY1, ARRAY2) \
  { return do_bsxfun_op<ARRAY::element_type, ARRAY1::element_type, ARRAY2::element_type> \
    (x, y, LOOP, LOOP, LOOP); }
#define BSXFUN_OP_DEF (   OP,
  ARRAY 
)    ARRAY bsxfun_ ## OP (const ARRAY& x, const ARRAY& y)
#define BSXFUN_OP_DEF_MXLOOP (   OP,
  ARRAY,
  LOOP 
)
Value:
BSXFUN_OP_DEF(OP, ARRAY) \
  { return do_bsxfun_op<ARRAY::element_type, ARRAY::element_type, ARRAY::element_type> \
    (x, y, LOOP, LOOP, LOOP); }
#define BSXFUN_REL_DEF (   OP,
  ARRAY 
)    boolNDArray bsxfun_ ## OP (const ARRAY& x, const ARRAY& y)
#define BSXFUN_REL_DEF_MXLOOP (   OP,
  ARRAY,
  LOOP 
)
Value:
BSXFUN_REL_DEF(OP, ARRAY) \
  { return do_bsxfun_op<bool, ARRAY::element_type, ARRAY::element_type> \
    (x, y, LOOP, LOOP, LOOP); }
#define BSXFUN_STDOP_DEFS_MXLOOP (   ARRAY  ) 
Value:
BSXFUN_OP_DEF_MXLOOP (add, ARRAY, mx_inline_add) \
  BSXFUN_OP_DEF_MXLOOP (sub, ARRAY, mx_inline_sub) \
  BSXFUN_OP_DEF_MXLOOP (mul, ARRAY, mx_inline_mul) \
  BSXFUN_OP_DEF_MXLOOP (div, ARRAY, mx_inline_div) \
  BSXFUN_OP_DEF_MXLOOP (min, ARRAY, mx_inline_xmin) \
  BSXFUN_OP_DEF_MXLOOP (max, ARRAY, mx_inline_xmax) \
#define BSXFUN_STDREL_DEFS_MXLOOP (   ARRAY  ) 
Value:
BSXFUN_REL_DEF_MXLOOP (eq, ARRAY, mx_inline_eq) \
  BSXFUN_REL_DEF_MXLOOP (ne, ARRAY, mx_inline_ne) \
  BSXFUN_REL_DEF_MXLOOP (lt, ARRAY, mx_inline_lt) \
  BSXFUN_REL_DEF_MXLOOP (le, ARRAY, mx_inline_le) \
  BSXFUN_REL_DEF_MXLOOP (gt, ARRAY, mx_inline_gt) \
  BSXFUN_REL_DEF_MXLOOP (ge, ARRAY, mx_inline_ge)

Function Documentation

template<class R , class X , class Y >
Array<R> do_bsxfun_op ( const Array< X > &  x,
const Array< Y > &  y,
void(*)(size_t, R *, const X *, const Y *)  op_vv,
void(*)(size_t, R *, X, const Y *)  op_sv,
void(*)(size_t, R *, const X *, Y)  op_vs 
)
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines