#include <cstddef>
#include <cmath>
#include <algorithm>
#include "Array-util.h"
#include "Array.h"
#include "bsxfun.h"
#include "oct-cmplx.h"
#include "oct-inttypes-fwd.h"
#include "oct-locbuf.h"
Go to the source code of this file.
Macros | |
#define | DEFMINMAXSPEC(T, F, OP) |
#define | DEFMXBINOP(F, OP) |
#define | DEFMXBINOPEQ(F, OP) |
#define | DEFMXBOOLOP(F, NOT1, OP, NOT2) |
#define | DEFMXCMPOP(F, OP) |
#define | octave_mx_inlines_h 1 |
#define | OP_CUM_FCN(F, TSRC, TRES, OP) |
#define | OP_CUM_FCN2(F, TSRC, TRES, OP) |
#define | OP_CUM_FCNN(F, TSRC, TRES) |
#define | OP_CUMMINMAX_FCN(F, OP) |
#define | OP_CUMMINMAX_FCN2(F, OP) |
#define | OP_CUMMINMAX_FCNN(F) |
#define | OP_MINMAX_FCN(F, OP) |
#define | OP_MINMAX_FCN2(F, OP) |
#define | OP_MINMAX_FCNN(F) |
#define | OP_RED_ALLC(ac, el) |
#define | OP_RED_ALLR(ac, el) ac &= xis_true (el) |
#define | OP_RED_ANYC(ac, el) |
#define | OP_RED_FCN(F, TSRC, TRES, OP, ZERO) |
#define | OP_RED_FCNN(F, TSRC, TRES) |
#define | OP_RED_PROD(ac, el) ac *= el |
#define | OP_RED_SUM(ac, el) ac += el |
#define | OP_RED_SUMSQ(ac, el) ac += ((el)*(el)) |
#define | OP_RED_SUMSQC(ac, el) ac += cabsq (el) |
#define | OP_ROW_SHORT_CIRCUIT(F, PRED, ZERO) |
#define | PROMOTE_DOUBLE(T) typename subst_template_param<std::complex, T, double>::type |
Functions | |
template<typename T > | |
T | cabsq (const std::complex< T > &c) |
template<typename R , typename X , typename Y > | |
Array< R > | do_mm_binary_op (const Array< X > &x, const Array< Y > &y, void(*op)(std::size_t, R *, const X *, const Y *), void(*op1)(std::size_t, R *, X, const Y *), void(*op2)(std::size_t, R *, const X *, Y), const char *opname) |
template<typename R , typename X > | |
Array< R > & | do_mm_inplace_op (Array< R > &r, const Array< X > &x, void(*op)(std::size_t, R *, const X *), void(*op1)(std::size_t, R *, X), const char *opname) |
template<typename R , typename X , typename Y > | |
Array< R > | do_ms_binary_op (const Array< X > &x, const Y &y, void(*op)(std::size_t, R *, const X *, Y)) |
template<typename R , typename X > | |
Array< R > & | do_ms_inplace_op (Array< R > &r, const X &x, void(*op)(std::size_t, R *, X)) |
template<typename T > | |
bool | do_mx_check (const Array< T > &a, bool(*op)(std::size_t, const T *)) |
template<typename R , typename T > | |
Array< R > | do_mx_cum_op (const Array< T > &src, int dim, void(*mx_cum_op)(const T *, R *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R > | |
Array< R > | do_mx_cumminmax_op (const Array< R > &src, Array< octave_idx_type > &idx, int dim, void(*mx_cumminmax_op)(const R *, R *, octave_idx_type *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R > | |
Array< R > | do_mx_cumminmax_op (const Array< R > &src, int dim, void(*mx_cumminmax_op)(const R *, R *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R > | |
Array< R > | do_mx_diff_op (const Array< R > &src, int dim, octave_idx_type order, void(*mx_diff_op)(const R *, R *, octave_idx_type, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R > | |
Array< R > & | do_mx_inplace_op (Array< R > &r, void(*op)(std::size_t, R *)) |
template<typename R > | |
Array< R > | do_mx_minmax_op (const Array< R > &src, Array< octave_idx_type > &idx, int dim, void(*mx_minmax_op)(const R *, R *, octave_idx_type *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R > | |
Array< R > | do_mx_minmax_op (const Array< R > &src, int dim, void(*mx_minmax_op)(const R *, R *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R , typename T > | |
Array< R > | do_mx_red_op (const Array< T > &src, int dim, void(*mx_red_op)(const T *, R *, octave_idx_type, octave_idx_type, octave_idx_type)) |
template<typename R , typename X , R fun> | |
Array< R > | do_mx_unary_map (const Array< X > &x) |
template<typename R , typename X > | |
Array< R > | do_mx_unary_op (const Array< X > &x, void(*op)(std::size_t, R *, const X *)) |
template<typename R , typename X , typename Y > | |
Array< R > | do_sm_binary_op (const X &x, const Array< Y > &y, void(*op)(std::size_t, R *, X, const Y *)) |
template<typename T > | |
void | F (const TSRC *v, TRES *r, octave_idx_type m, octave_idx_type n) |
void | get_extent_triplet (const dim_vector &dims, int &dim, octave_idx_type &l, octave_idx_type &n, octave_idx_type &u) |
template<typename T > | |
bool | logical_value (const octave_int< T > &x) |
template<typename T > | |
bool | logical_value (const std::complex< T > &x) |
template<typename T > | |
bool | logical_value (T x) |
template<typename R , typename X , typename Y > | |
void | mx_inline_add (std::size_t n, R *r, const X *x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_add (std::size_t n, R *r, const X *x, Y y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_add (std::size_t n, R *r, X x, const Y *y) |
template<typename R , typename X > | |
void | mx_inline_add2 (std::size_t n, R *r, const X *x) |
template<typename R , typename X > | |
void | mx_inline_add2 (std::size_t n, R *r, X x) |
template<typename T > | |
void | mx_inline_all (const T *v, bool *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_all (const T *v, bool *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
bool | mx_inline_all (const T *v, octave_idx_type n) |
template<typename T > | |
bool | mx_inline_all_finite (std::size_t n, const T *x) |
template<typename T > | |
void | mx_inline_all_r (const T *v, bool *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
bool | mx_inline_all_real (std::size_t n, const std::complex< T > *x) |
template<typename X , typename Y > | |
void | mx_inline_and (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_and (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_and (std::size_t n, bool *r, X x, const Y *y) |
template<typename X > | |
void | mx_inline_and2 (std::size_t n, bool *r, const X *x) |
template<typename X > | |
void | mx_inline_and2 (std::size_t n, bool *r, X x) |
template<typename X , typename Y > | |
void | mx_inline_and_not (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_and_not (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_and_not (std::size_t n, bool *r, X x, const Y *y) |
template<typename T > | |
void | mx_inline_any (const T *v, bool *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_any (const T *v, bool *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
bool | mx_inline_any (const T *v, octave_idx_type n) |
template<typename T > | |
bool | mx_inline_any_nan (std::size_t n, const T *x) |
template<typename T > | |
bool | mx_inline_any_negative (std::size_t n, const T *x) |
template<typename T > | |
bool | mx_inline_any_positive (std::size_t n, const T *x) |
template<typename T > | |
void | mx_inline_any_r (const T *v, bool *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
T | mx_inline_count (const bool *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_count (const bool *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_count (const bool *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumcount (const bool *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cumcount (const bool *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumcount (const bool *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type *ri, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type *ri, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type *ri, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummax (const T *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type *ri, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type *ri, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type *ri, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cummin (const T *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumprod (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cumprod (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumprod (const T *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumsum (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_cumsum (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_cumsum (const T *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_diff (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u, octave_idx_type order) |
template<typename T > | |
void | mx_inline_diff (const T *v, T *r, octave_idx_type m, octave_idx_type n, octave_idx_type order) |
template<typename T > | |
void | mx_inline_diff (const T *v, T *r, octave_idx_type n, octave_idx_type order) |
template<typename R , typename X , typename Y > | |
void | mx_inline_div (std::size_t n, R *r, const X *x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_div (std::size_t n, R *r, const X *x, Y y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_div (std::size_t n, R *r, X x, const Y *y) |
template<typename R , typename X > | |
void | mx_inline_div2 (std::size_t n, R *r, const X *x) |
template<typename R , typename X > | |
void | mx_inline_div2 (std::size_t n, R *r, X x) |
template<typename T > | |
subst_template_param< std::complex, T, double >::type | mx_inline_dprod (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_dprod (const T *v, typename subst_template_param< std::complex, T, double >::type *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_dprod (const T *v, typename subst_template_param< std::complex, T, double >::type *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
subst_template_param< std::complex, T, double >::type | mx_inline_dsum (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_dsum (const T *v, typename subst_template_param< std::complex, T, double >::type *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_dsum (const T *v, typename subst_template_param< std::complex, T, double >::type *r, octave_idx_type m, octave_idx_type n) |
template<typename X , typename Y > | |
void | mx_inline_eq (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_eq (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_eq (std::size_t n, bool *r, X x, const Y *y) |
template<typename T1 , typename T2 > | |
bool | mx_inline_equal (std::size_t n, const T1 *x, const T2 *y) |
template<typename R , typename S > | |
void | mx_inline_fill (std::size_t n, R *r, S s) |
template<typename X , typename Y > | |
void | mx_inline_ge (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_ge (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_ge (std::size_t n, bool *r, X x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_gt (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_gt (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_gt (std::size_t n, bool *r, X x, const Y *y) |
template<typename T > | |
void | mx_inline_imag (std::size_t n, T *r, const std::complex< T > *x) |
template<typename X > | |
void | mx_inline_iszero (std::size_t n, bool *r, const X *x) |
template<typename X , typename Y > | |
void | mx_inline_le (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_le (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_le (std::size_t n, bool *r, X x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_lt (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_lt (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_lt (std::size_t n, bool *r, X x, const Y *y) |
template<typename R , typename X , R fun> | |
void | mx_inline_map (std::size_t n, R *r, const X *x) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type *ri, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type *ri, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type *ri, octave_idx_type n) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_max (const T *v, T *r, octave_idx_type n) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type *ri, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type *ri, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type *ri, octave_idx_type n) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_min (const T *v, T *r, octave_idx_type n) |
template<typename R , typename X , typename Y > | |
void | mx_inline_mul (std::size_t n, R *r, const X *x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_mul (std::size_t n, R *r, const X *x, Y y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_mul (std::size_t n, R *r, X x, const Y *y) |
template<typename R , typename X > | |
void | mx_inline_mul2 (std::size_t n, R *r, const X *x) |
template<typename R , typename X > | |
void | mx_inline_mul2 (std::size_t n, R *r, X x) |
template<typename X , typename Y > | |
void | mx_inline_ne (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_ne (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_ne (std::size_t n, bool *r, X x, const Y *y) |
template<typename X > | |
void | mx_inline_not (std::size_t n, bool *r, const X *x) |
void | mx_inline_not2 (std::size_t n, bool *r) |
template<typename X , typename Y > | |
void | mx_inline_not_and (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_not_and (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_not_and (std::size_t n, bool *r, X x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_not_or (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_not_or (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_not_or (std::size_t n, bool *r, X x, const Y *y) |
template<typename X > | |
void | mx_inline_notzero (std::size_t n, bool *r, const X *x) |
template<typename X , typename Y > | |
void | mx_inline_or (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_or (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_or (std::size_t n, bool *r, X x, const Y *y) |
template<typename X > | |
void | mx_inline_or2 (std::size_t n, bool *r, const X *x) |
template<typename X > | |
void | mx_inline_or2 (std::size_t n, bool *r, X x) |
template<typename X , typename Y > | |
void | mx_inline_or_not (std::size_t n, bool *r, const X *x, const Y *y) |
template<typename X , typename Y > | |
void | mx_inline_or_not (std::size_t n, bool *r, const X *x, Y y) |
template<typename X , typename Y > | |
void | mx_inline_or_not (std::size_t n, bool *r, X x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_pow (std::size_t n, R *r, const X *x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_pow (std::size_t n, R *r, const X *x, Y y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_pow (std::size_t n, R *r, X x, const Y *y) |
template<typename T > | |
T | mx_inline_prod (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_prod (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_prod (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
void | mx_inline_real (std::size_t n, T *r, const std::complex< T > *x) |
template<typename R , typename X , typename Y > | |
void | mx_inline_sub (std::size_t n, R *r, const X *x, const Y *y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_sub (std::size_t n, R *r, const X *x, Y y) |
template<typename R , typename X , typename Y > | |
void | mx_inline_sub (std::size_t n, R *r, X x, const Y *y) |
template<typename R , typename X > | |
void | mx_inline_sub2 (std::size_t n, R *r, const X *x) |
template<typename R , typename X > | |
void | mx_inline_sub2 (std::size_t n, R *r, X x) |
template<typename T > | |
T | mx_inline_sum (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_sum (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_sum (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
T | mx_inline_sumsq (const std::complex< T > *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_sumsq (const std::complex< T > *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_sumsq (const std::complex< T > *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename T > | |
T | mx_inline_sumsq (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_sumsq (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_sumsq (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
template<typename R , typename X > | |
void | mx_inline_uminus (std::size_t n, R *r, const X *x) |
template<typename R > | |
void | mx_inline_uminus2 (std::size_t n, R *r) |
template<typename T > | |
void | mx_inline_xmax (std::size_t n, T *r, const T *x, const T *y) |
template<typename T > | |
void | mx_inline_xmax (std::size_t n, T *r, const T *x, T y) |
template<typename T > | |
void | mx_inline_xmax (std::size_t n, T *r, T x, const T *y) |
template<> | |
void | mx_inline_xmax< double > (std::size_t n, double *r, const double *x, double y) |
template<> | |
void | mx_inline_xmax< double > (std::size_t n, double *r, double x, const double *y) |
template<> | |
void | mx_inline_xmax< float > (std::size_t n, float *r, const float *x, float y) |
template<> | |
void | mx_inline_xmax< float > (std::size_t n, float *r, float x, const float *y) |
template<typename T > | |
void | mx_inline_xmin (std::size_t n, T *r, const T *x, const T *y) |
template<typename T > | |
void | mx_inline_xmin (std::size_t n, T *r, const T *x, T y) |
template<typename T > | |
void | mx_inline_xmin (std::size_t n, T *r, T x, const T *y) |
template<> | |
void | mx_inline_xmin< double > (std::size_t n, double *r, const double *x, double y) |
template<> | |
void | mx_inline_xmin< double > (std::size_t n, double *r, double x, const double *y) |
template<> | |
void | mx_inline_xmin< float > (std::size_t n, float *r, const float *x, float y) |
template<> | |
void | mx_inline_xmin< float > (std::size_t n, float *r, float x, const float *y) |
template<typename T > | |
T | mx_inline_xsum (const T *v, octave_idx_type n) |
template<typename T > | |
void | mx_inline_xsum (const T *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
template<typename T > | |
void | mx_inline_xsum (const T *v, T *r, octave_idx_type m, octave_idx_type n) |
void | op_dble_prod (Complex &ac, const FloatComplex &el) |
template<typename T > | |
void | op_dble_prod (double &ac, const octave_int< T > &el) |
void | op_dble_prod (double &ac, float el) |
void | op_dble_sum (Complex &ac, const FloatComplex &el) |
template<typename T > | |
void | op_dble_sum (double &ac, const octave_int< T > &el) |
void | op_dble_sum (double &ac, float el) |
template<typename T > | |
void | twosum_accum (T &s, T &e, const T &x) |
bool | xis_false (const Complex &x) |
bool | xis_false (const FloatComplex &x) |
template<typename T > | |
bool | xis_false (const octave_int< T > &x) |
bool | xis_false (double x) |
bool | xis_false (float x) |
template<typename T > | |
bool | xis_false (T x) |
bool | xis_true (const Complex &x) |
bool | xis_true (const FloatComplex &x) |
template<typename T > | |
bool | xis_true (const octave_int< T > &x) |
bool | xis_true (double x) |
bool | xis_true (float x) |
template<typename T > | |
bool | xis_true (T x) |
#define DEFMINMAXSPEC | ( | T, | |
F, | |||
OP | |||
) |
Definition at line 383 of file mx-inlines.cc.
#define DEFMXBINOP | ( | F, | |
OP | |||
) |
Definition at line 87 of file mx-inlines.cc.
#define DEFMXBINOPEQ | ( | F, | |
OP | |||
) |
Definition at line 112 of file mx-inlines.cc.
#define DEFMXBOOLOP | ( | F, | |
NOT1, | |||
OP, | |||
NOT2 | |||
) |
Definition at line 193 of file mx-inlines.cc.
#define DEFMXCMPOP | ( | F, | |
OP | |||
) |
Definition at line 131 of file mx-inlines.cc.
#define octave_mx_inlines_h 1 |
Definition at line 27 of file mx-inlines.cc.
#define OP_CUM_FCN | ( | F, | |
TSRC, | |||
TRES, | |||
OP | |||
) |
Definition at line 845 of file mx-inlines.cc.
#define OP_CUM_FCN2 | ( | F, | |
TSRC, | |||
TRES, | |||
OP | |||
) |
Definition at line 862 of file mx-inlines.cc.
#define OP_CUM_FCNN | ( | F, | |
TSRC, | |||
TRES | |||
) |
Definition at line 886 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCN | ( | F, | |
OP | |||
) |
Definition at line 1116 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCN2 | ( | F, | |
OP | |||
) |
Definition at line 1191 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCNN | ( | F | ) |
Definition at line 1321 of file mx-inlines.cc.
#define OP_MINMAX_FCN | ( | F, | |
OP | |||
) |
Definition at line 916 of file mx-inlines.cc.
#define OP_MINMAX_FCN2 | ( | F, | |
OP | |||
) |
Definition at line 969 of file mx-inlines.cc.
#define OP_MINMAX_FCNN | ( | F | ) |
Definition at line 1058 of file mx-inlines.cc.
#define OP_RED_ALLC | ( | ac, | |
el | |||
) |
Definition at line 729 of file mx-inlines.cc.
#define OP_RED_ALLR | ( | ac, | |
el | |||
) | ac &= xis_true (el) |
Definition at line 772 of file mx-inlines.cc.
#define OP_RED_ANYC | ( | ac, | |
el | |||
) |
Definition at line 720 of file mx-inlines.cc.
#define OP_RED_FCN | ( | F, | |
TSRC, | |||
TRES, | |||
OP, | |||
ZERO | |||
) |
Definition at line 738 of file mx-inlines.cc.
#define OP_RED_FCNN | ( | F, | |
TSRC, | |||
TRES | |||
) |
Definition at line 810 of file mx-inlines.cc.
#define OP_RED_PROD | ( | ac, | |
el | |||
) | ac *= el |
Definition at line 675 of file mx-inlines.cc.
#define OP_RED_SUM | ( | ac, | |
el | |||
) | ac += el |
Definition at line 674 of file mx-inlines.cc.
#define OP_RED_SUMSQ | ( | ac, | |
el | |||
) | ac += ((el)*(el)) |
Definition at line 676 of file mx-inlines.cc.
#define OP_RED_SUMSQC | ( | ac, | |
el | |||
) | ac += cabsq (el) |
Definition at line 677 of file mx-inlines.cc.
#define OP_ROW_SHORT_CIRCUIT | ( | F, | |
PRED, | |||
ZERO | |||
) |
Definition at line 779 of file mx-inlines.cc.
#define PROMOTE_DOUBLE | ( | T | ) | typename subst_template_param<std::complex, T, double>::type |
Definition at line 749 of file mx-inlines.cc.
|
inline |
Definition at line 589 of file mx-inlines.cc.
|
inline |
Definition at line 498 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), do_bsxfun_op(), octave::err_nonconformant(), Array< T, Alloc >::fortran_vec(), is_valid_bsxfun(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 542 of file mx-inlines.cc.
References Array< T, Alloc >::dims(), do_inplace_bsxfun_op(), octave::err_nonconformant(), Array< T, Alloc >::fortran_vec(), is_valid_inplace_bsxfun(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 522 of file mx-inlines.cc.
References Array< T, Alloc >::fortran_vec(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 561 of file mx-inlines.cc.
References Array< T, Alloc >::fortran_vec(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 580 of file mx-inlines.cc.
References Array< T, Alloc >::data(), and Array< T, Alloc >::numel().
|
inline |
Definition at line 1545 of file mx-inlines.cc.
|
inline |
Definition at line 1621 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), Array< T, Alloc >::fortran_vec(), and get_extent_triplet().
|
inline |
Definition at line 1605 of file mx-inlines.cc.
|
inline |
Definition at line 1640 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), Array< T, Alloc >::fortran_vec(), and get_extent_triplet().
|
inline |
Definition at line 489 of file mx-inlines.cc.
References Array< T, Alloc >::fortran_vec(), and Array< T, Alloc >::numel().
|
inline |
Definition at line 1582 of file mx-inlines.cc.
References dim_vector::chop_trailing_singletons(), Array< T, Alloc >::data(), Array< T, Alloc >::dims(), Array< T, Alloc >::fortran_vec(), get_extent_triplet(), and dim_vector::ndims().
|
inline |
Definition at line 1562 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), Array< T, Alloc >::fortran_vec(), and get_extent_triplet().
|
inline |
Definition at line 1521 of file mx-inlines.cc.
Definition at line 475 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 463 of file mx-inlines.cc.
References Array< T, Alloc >::fortran_vec(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 532 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), Array< T, Alloc >::fortran_vec(), Array< T, Alloc >::numel(), and x.
|
inline |
Definition at line 757 of file mx-inlines.cc.
Referenced by F__voronoi__(), and Fsymbfact().
|
inline |
Definition at line 1490 of file mx-inlines.cc.
Referenced by do_mx_cumminmax_op(), do_mx_diff_op(), do_mx_minmax_op(), and MArray< T >::idx_add_nd().
|
inline |
Definition at line 175 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 168 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 161 of file mx-inlines.cc.
References x.
Referenced by mx_inline_and2(), mx_inline_not(), and mx_inline_or2().
|
inline |
Definition at line 107 of file mx-inlines.cc.
Referenced by Sparse< T, Alloc >::assign().
|
inline |
Definition at line 107 of file mx-inlines.cc.
|
inline |
Definition at line 107 of file mx-inlines.cc.
|
inline |
Definition at line 126 of file mx-inlines.cc.
Referenced by Sparse< T, Alloc >::assign(), MArray< T >::idx_add_nd(), ComplexColumnVector::operator+=(), ComplexDiagMatrix::operator+=(), FloatComplexColumnVector::operator+=(), FloatComplexDiagMatrix::operator+=(), FloatComplexMatrix::operator+=(), FloatComplexRowVector::operator+=(), ComplexMatrix::operator+=(), ComplexRowVector::operator+=(), and operator+=().
|
inline |
Definition at line 126 of file mx-inlines.cc.
|
inline |
Definition at line 843 of file mx-inlines.cc.
|
inline |
Definition at line 808 of file mx-inlines.cc.
|
inline |
Definition at line 754 of file mx-inlines.cc.
Referenced by boolNDArray::all(), charNDArray::all(), ComplexNDArray::all(), NDArray::all(), FloatComplexNDArray::all(), and FloatNDArray::all().
|
inline |
Definition at line 270 of file mx-inlines.cc.
References octave::math::isfinite(), and x.
Referenced by ComplexNDArray::any_element_is_inf_or_nan(), NDArray::any_element_is_inf_or_nan(), FloatComplexNDArray::any_element_is_inf_or_nan(), and FloatNDArray::any_element_is_inf_or_nan().
|
inline |
Definition at line 774 of file mx-inlines.cc.
|
inline |
|
inline |
Definition at line 216 of file mx-inlines.cc.
|
inline |
Definition at line 216 of file mx-inlines.cc.
|
inline |
Definition at line 216 of file mx-inlines.cc.
|
inline |
Definition at line 225 of file mx-inlines.cc.
References logical_value(), and x.
Referenced by mx_el_and_assign().
|
inline |
Definition at line 233 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 220 of file mx-inlines.cc.
|
inline |
Definition at line 220 of file mx-inlines.cc.
|
inline |
Definition at line 220 of file mx-inlines.cc.
|
inline |
Definition at line 842 of file mx-inlines.cc.
|
inline |
Definition at line 807 of file mx-inlines.cc.
|
inline |
Definition at line 754 of file mx-inlines.cc.
Referenced by boolNDArray::any(), charNDArray::any(), ComplexNDArray::any(), NDArray::any(), FloatComplexNDArray::any(), and FloatNDArray::any().
|
inline |
Definition at line 257 of file mx-inlines.cc.
References octave::math::isnan(), and x.
Referenced by ComplexNDArray::any_element_is_nan(), NDArray::any_element_is_nan(), FloatComplexNDArray::any_element_is_nan(), and FloatNDArray::any_element_is_nan().
|
inline |
Definition at line 283 of file mx-inlines.cc.
References x.
Referenced by NDArray::any_element_is_negative(), and FloatNDArray::any_element_is_negative().
|
inline |
Definition at line 296 of file mx-inlines.cc.
References x.
Referenced by NDArray::any_element_is_positive(), and FloatNDArray::any_element_is_positive().
|
inline |
Definition at line 774 of file mx-inlines.cc.
|
inline |
Definition at line 753 of file mx-inlines.cc.
|
inline |
Definition at line 837 of file mx-inlines.cc.
|
inline |
Definition at line 770 of file mx-inlines.cc.
|
inline |
Definition at line 914 of file mx-inlines.cc.
|
inline |
Definition at line 884 of file mx-inlines.cc.
|
inline |
Definition at line 860 of file mx-inlines.cc.
|
inline |
Definition at line 1378 of file mx-inlines.cc.
|
inline |
Definition at line 1319 of file mx-inlines.cc.
void mx_inline_cummax | ( | const T * | v, |
T * | r, | ||
octave_idx_type * | ri, | ||
octave_idx_type | n | ||
) |
Definition at line 1185 of file mx-inlines.cc.
|
inline |
Definition at line 1378 of file mx-inlines.cc.
|
inline |
Definition at line 1319 of file mx-inlines.cc.
void mx_inline_cummax | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 1185 of file mx-inlines.cc.
Referenced by ComplexNDArray::cummax(), NDArray::cummax(), FloatComplexNDArray::cummax(), FloatNDArray::cummax(), and intNDArray< T >::cummax().
|
inline |
Definition at line 1377 of file mx-inlines.cc.
|
inline |
Definition at line 1318 of file mx-inlines.cc.
void mx_inline_cummin | ( | const T * | v, |
T * | r, | ||
octave_idx_type * | ri, | ||
octave_idx_type | n | ||
) |
Definition at line 1184 of file mx-inlines.cc.
|
inline |
Definition at line 1377 of file mx-inlines.cc.
|
inline |
Definition at line 1318 of file mx-inlines.cc.
void mx_inline_cummin | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 1184 of file mx-inlines.cc.
Referenced by ComplexNDArray::cummin(), NDArray::cummin(), FloatComplexNDArray::cummin(), FloatNDArray::cummin(), and intNDArray< T >::cummin().
|
inline |
Definition at line 913 of file mx-inlines.cc.
|
inline |
Definition at line 883 of file mx-inlines.cc.
|
inline |
Definition at line 859 of file mx-inlines.cc.
Referenced by ComplexNDArray::cumprod(), NDArray::cumprod(), FloatComplexNDArray::cumprod(), and FloatNDArray::cumprod().
|
inline |
Definition at line 912 of file mx-inlines.cc.
|
inline |
Definition at line 882 of file mx-inlines.cc.
|
inline |
Definition at line 858 of file mx-inlines.cc.
Referenced by intNDArray< T >::cumsum(), ComplexNDArray::cumsum(), NDArray::cumsum(), FloatComplexNDArray::cumsum(), and FloatNDArray::cumsum().
|
inline |
Definition at line 1463 of file mx-inlines.cc.
void mx_inline_diff | ( | const T * | v, |
T * | r, | ||
octave_idx_type | m, | ||
octave_idx_type | n, | ||
octave_idx_type | order | ||
) |
Definition at line 1422 of file mx-inlines.cc.
void mx_inline_diff | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n, | ||
octave_idx_type | order | ||
) |
Definition at line 1381 of file mx-inlines.cc.
References octave::dif(), and OCTAVE_LOCAL_BUFFER.
Referenced by ComplexNDArray::diff(), NDArray::diff(), FloatComplexNDArray::diff(), FloatNDArray::diff(), and intNDArray< T >::diff().
|
inline |
Definition at line 110 of file mx-inlines.cc.
|
inline |
Definition at line 110 of file mx-inlines.cc.
|
inline |
Definition at line 110 of file mx-inlines.cc.
|
inline |
Definition at line 129 of file mx-inlines.cc.
Referenced by operator/=(), and quotient_eq().
|
inline |
Definition at line 129 of file mx-inlines.cc.
|
inline |
Definition at line 753 of file mx-inlines.cc.
Referenced by FloatComplexNDArray::dprod(), and FloatNDArray::dprod().
|
inline |
Definition at line 839 of file mx-inlines.cc.
|
inline |
Definition at line 770 of file mx-inlines.cc.
|
inline |
Definition at line 752 of file mx-inlines.cc.
Referenced by intNDArray< T >::dsum(), FloatComplexNDArray::dsum(), and FloatNDArray::dsum().
|
inline |
Definition at line 836 of file mx-inlines.cc.
|
inline |
Definition at line 769 of file mx-inlines.cc.
|
inline |
Definition at line 155 of file mx-inlines.cc.
|
inline |
Definition at line 155 of file mx-inlines.cc.
|
inline |
Definition at line 155 of file mx-inlines.cc.
|
inline |
Definition at line 570 of file mx-inlines.cc.
References x.
Referenced by boolMatrix::operator==(), charMatrix::operator==(), ColumnVector::operator==(), ComplexColumnVector::operator==(), ComplexDiagMatrix::operator==(), ComplexMatrix::operator==(), ComplexRowVector::operator==(), DiagMatrix::operator==(), FloatColumnVector::operator==(), FloatComplexColumnVector::operator==(), FloatComplexDiagMatrix::operator==(), FloatComplexMatrix::operator==(), FloatComplexRowVector::operator==(), FloatDiagMatrix::operator==(), FloatMatrix::operator==(), FloatRowVector::operator==(), Matrix::operator==(), and RowVector::operator==().
|
inline |
Definition at line 47 of file mx-inlines.cc.
|
inline |
Definition at line 154 of file mx-inlines.cc.
|
inline |
Definition at line 154 of file mx-inlines.cc.
|
inline |
Definition at line 154 of file mx-inlines.cc.
|
inline |
Definition at line 153 of file mx-inlines.cc.
|
inline |
Definition at line 153 of file mx-inlines.cc.
|
inline |
Definition at line 153 of file mx-inlines.cc.
|
inline |
Definition at line 328 of file mx-inlines.cc.
|
inline |
Definition at line 71 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 152 of file mx-inlines.cc.
|
inline |
Definition at line 152 of file mx-inlines.cc.
|
inline |
Definition at line 152 of file mx-inlines.cc.
|
inline |
Definition at line 151 of file mx-inlines.cc.
|
inline |
Definition at line 151 of file mx-inlines.cc.
|
inline |
Definition at line 151 of file mx-inlines.cc.
|
inline |
Definition at line 445 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 1114 of file mx-inlines.cc.
|
inline |
Definition at line 1056 of file mx-inlines.cc.
void mx_inline_max | ( | const T * | v, |
T * | r, | ||
octave_idx_type * | ri, | ||
octave_idx_type | n | ||
) |
Definition at line 963 of file mx-inlines.cc.
|
inline |
Definition at line 1114 of file mx-inlines.cc.
|
inline |
Definition at line 1056 of file mx-inlines.cc.
void mx_inline_max | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 963 of file mx-inlines.cc.
Referenced by charNDArray::max(), ComplexNDArray::max(), NDArray::max(), FloatComplexNDArray::max(), FloatNDArray::max(), and intNDArray< T >::max().
|
inline |
Definition at line 1113 of file mx-inlines.cc.
|
inline |
Definition at line 1055 of file mx-inlines.cc.
void mx_inline_min | ( | const T * | v, |
T * | r, | ||
octave_idx_type * | ri, | ||
octave_idx_type | n | ||
) |
Definition at line 962 of file mx-inlines.cc.
|
inline |
Definition at line 1113 of file mx-inlines.cc.
|
inline |
Definition at line 1055 of file mx-inlines.cc.
void mx_inline_min | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 962 of file mx-inlines.cc.
Referenced by charNDArray::min(), ComplexNDArray::min(), NDArray::min(), FloatComplexNDArray::min(), FloatNDArray::min(), and intNDArray< T >::min().
|
inline |
Definition at line 109 of file mx-inlines.cc.
Referenced by kron().
|
inline |
Definition at line 109 of file mx-inlines.cc.
|
inline |
Definition at line 109 of file mx-inlines.cc.
|
inline |
Definition at line 128 of file mx-inlines.cc.
Referenced by operator*=(), and product_eq().
|
inline |
Definition at line 128 of file mx-inlines.cc.
|
inline |
Definition at line 156 of file mx-inlines.cc.
|
inline |
Definition at line 156 of file mx-inlines.cc.
|
inline |
Definition at line 156 of file mx-inlines.cc.
void mx_inline_not | ( | std::size_t | n, |
bool * | r, | ||
const X * | x | ||
) |
Definition at line 181 of file mx-inlines.cc.
References logical_value(), and x.
Referenced by boolNDArray::operator!(), ComplexNDArray::operator!(), NDArray::operator!(), FloatComplexNDArray::operator!(), and FloatNDArray::operator!().
|
inline |
Definition at line 187 of file mx-inlines.cc.
Referenced by boolNDArray::invert().
|
inline |
Definition at line 218 of file mx-inlines.cc.
|
inline |
Definition at line 218 of file mx-inlines.cc.
|
inline |
Definition at line 218 of file mx-inlines.cc.
|
inline |
Definition at line 219 of file mx-inlines.cc.
|
inline |
Definition at line 219 of file mx-inlines.cc.
|
inline |
Definition at line 219 of file mx-inlines.cc.
|
inline |
Definition at line 80 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 217 of file mx-inlines.cc.
|
inline |
Definition at line 217 of file mx-inlines.cc.
|
inline |
Definition at line 217 of file mx-inlines.cc.
|
inline |
Definition at line 241 of file mx-inlines.cc.
References logical_value(), and x.
Referenced by mx_el_or_assign().
|
inline |
Definition at line 249 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 221 of file mx-inlines.cc.
|
inline |
Definition at line 221 of file mx-inlines.cc.
|
inline |
Definition at line 221 of file mx-inlines.cc.
|
inline |
Definition at line 414 of file mx-inlines.cc.
|
inline |
Definition at line 424 of file mx-inlines.cc.
|
inline |
Definition at line 434 of file mx-inlines.cc.
|
inline |
Definition at line 753 of file mx-inlines.cc.
Referenced by intNDArray< T >::prod(), ComplexNDArray::prod(), NDArray::prod(), FloatComplexNDArray::prod(), and FloatNDArray::prod().
|
inline |
Definition at line 838 of file mx-inlines.cc.
|
inline |
Definition at line 770 of file mx-inlines.cc.
|
inline |
Definition at line 321 of file mx-inlines.cc.
|
inline |
Definition at line 108 of file mx-inlines.cc.
Referenced by Sparse< T, Alloc >::delete_elements(), and Sparse< T, Alloc >::index().
|
inline |
Definition at line 108 of file mx-inlines.cc.
|
inline |
Definition at line 108 of file mx-inlines.cc.
|
inline |
Definition at line 127 of file mx-inlines.cc.
Referenced by ComplexColumnVector::operator-=(), FloatComplexColumnVector::operator-=(), FloatComplexMatrix::operator-=(), FloatComplexRowVector::operator-=(), ComplexMatrix::operator-=(), ComplexRowVector::operator-=(), and operator-=().
|
inline |
Definition at line 127 of file mx-inlines.cc.
|
inline |
Definition at line 752 of file mx-inlines.cc.
Referenced by intNDArray< T >::sum(), ComplexNDArray::sum(), NDArray::sum(), FloatComplexNDArray::sum(), and FloatNDArray::sum().
|
inline |
Definition at line 835 of file mx-inlines.cc.
|
inline |
Definition at line 769 of file mx-inlines.cc.
|
inline |
Definition at line 754 of file mx-inlines.cc.
|
inline |
Definition at line 841 of file mx-inlines.cc.
|
inline |
Definition at line 771 of file mx-inlines.cc.
|
inline |
Definition at line 754 of file mx-inlines.cc.
Referenced by ComplexNDArray::sumsq(), NDArray::sumsq(), FloatComplexNDArray::sumsq(), and FloatNDArray::sumsq().
|
inline |
Definition at line 840 of file mx-inlines.cc.
|
inline |
Definition at line 771 of file mx-inlines.cc.
|
inline |
|
inline |
Definition at line 63 of file mx-inlines.cc.
Referenced by MArray< T >::changesign().
|
inline |
Definition at line 360 of file mx-inlines.cc.
References octave::math::max(), and x.
Referenced by max().
|
inline |
Definition at line 368 of file mx-inlines.cc.
References octave::math::max(), and x.
|
inline |
Definition at line 376 of file mx-inlines.cc.
References octave::math::max(), and x.
|
inline |
Definition at line 404 of file mx-inlines.cc.
|
inline |
Definition at line 404 of file mx-inlines.cc.
|
inline |
Definition at line 406 of file mx-inlines.cc.
|
inline |
Definition at line 406 of file mx-inlines.cc.
|
inline |
Definition at line 336 of file mx-inlines.cc.
References octave::math::min(), and x.
Referenced by min().
|
inline |
Definition at line 344 of file mx-inlines.cc.
References octave::math::min(), and x.
|
inline |
Definition at line 352 of file mx-inlines.cc.
References octave::math::min(), and x.
|
inline |
Definition at line 403 of file mx-inlines.cc.
|
inline |
Definition at line 403 of file mx-inlines.cc.
|
inline |
Definition at line 405 of file mx-inlines.cc.
|
inline |
Definition at line 405 of file mx-inlines.cc.
|
inline |
Definition at line 1689 of file mx-inlines.cc.
References x.
Referenced by ComplexNDArray::xsum(), and NDArray::xsum().
|
inline |
Definition at line 1720 of file mx-inlines.cc.
References OCTAVE_LOCAL_BUFFER, and twosum_accum().
|
inline |
Definition at line 1701 of file mx-inlines.cc.
|
inline |
Definition at line 687 of file mx-inlines.cc.
|
inline |
Definition at line 694 of file mx-inlines.cc.
References octave_int< T >::double_value().
Definition at line 680 of file mx-inlines.cc.
|
inline |
Definition at line 707 of file mx-inlines.cc.
|
inline |
Definition at line 714 of file mx-inlines.cc.
References octave_int< T >::double_value().
Definition at line 700 of file mx-inlines.cc.
|
inline |
Definition at line 1677 of file mx-inlines.cc.
Referenced by mx_inline_xsum().
Definition at line 657 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 669 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 619 of file mx-inlines.cc.
References x.
Definition at line 632 of file mx-inlines.cc.
References x.
Definition at line 644 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 604 of file mx-inlines.cc.
References x.
Definition at line 651 of file mx-inlines.cc.
References octave::math::isnan(), and x.
|
inline |
Definition at line 663 of file mx-inlines.cc.
References octave::math::isnan(), and x.
|
inline |
Definition at line 612 of file mx-inlines.cc.
References x.
Definition at line 626 of file mx-inlines.cc.
References octave::math::isnan(), and x.
Definition at line 638 of file mx-inlines.cc.
References octave::math::isnan(), and x.
|
inline |
Definition at line 597 of file mx-inlines.cc.
References x.