#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_ANYR(ac, el) ac |= xis_true (el) |
#define | OP_RED_FCN(F, TSRC, TRES, OP, ZERO) |
#define | OP_RED_FCN2(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 fcn> | |
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 *)) |
for (octave_idx_type i=0;i< n;i++) ac+ = i | |
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_finite (std::size_t n, const T *x) |
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 > | |
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_count (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 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 > | |
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_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 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 fcn> | |
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 > | |
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_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_sumsq (const std::complex< T > *v, T *r, octave_idx_type l, octave_idx_type n, octave_idx_type u) |
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) |
OOP_RED_FCN (mx_inline_all, T, bool, OP_RED_ALLC, true) template< typename T > inline void mx_inline_sum(const T *v | |
OOP_RED_FCN (mx_inline_dsum, T, typename subst_template_param< std::complex, T, double >::type, op_dble_sum, 0.0) template< typename T > inline T mx_inline_count(const bool *v | |
OOP_RED_FCN (mx_inline_prod, T, T, OP_RED_PROD, 1) template< typename T > inline typename subst_template_param< std | |
OOP_RED_FCN (mx_inline_sumsq, std::complex< T >, T, OP_RED_SUMSQC, 0) template< typename T > inline bool mx_inline_any(const T *v | |
OOP_RED_FCN2 (mx_inline_all_r, T, bool, OP_RED_ALLR, true) template< typename T > inline void mx_inline_any(const T *v | |
OOP_RED_FCN2 (mx_inline_dsum, T, typename subst_template_param< std::complex, T, double >::type, op_dble_sum, 0.0) template< typename T > inline void mx_inline_count(const bool *v | |
OOP_RED_FCN2 (mx_inline_prod, T, T, OP_RED_PROD, 1) template< typename T > inline void mx_inline_dprod(const T *v | |
OOP_RED_FCN2 (mx_inline_sumsq, std::complex< T >, T, OP_RED_SUMSQC, 0) template< typename T > inline void mx_inline_any_r(const T *v | |
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) |
Variables | |
return | ac |
else | continue |
octave_idx_type * | iact = octave_local_buffer_iact .get () |
T octave_idx_type | m |
octave_idx_type | n { T ac = 0 |
octave_idx_type | nact = m |
std::unique_ptr< octave_idx_type[]> | octave_local_buffer_iact { new octave_idx_type [ m ] } |
T * | r |
#define DEFMINMAXSPEC | ( | T, | |
F, | |||
OP | |||
) |
Definition at line 388 of file mx-inlines.cc.
#define DEFMXBINOP | ( | F, | |
OP | |||
) |
Definition at line 88 of file mx-inlines.cc.
#define DEFMXBINOPEQ | ( | F, | |
OP | |||
) |
Definition at line 113 of file mx-inlines.cc.
#define DEFMXBOOLOP | ( | F, | |
NOT1, | |||
OP, | |||
NOT2 | |||
) |
Definition at line 196 of file mx-inlines.cc.
#define DEFMXCMPOP | ( | F, | |
OP | |||
) |
Definition at line 132 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 862 of file mx-inlines.cc.
#define OP_CUM_FCN2 | ( | F, | |
TSRC, | |||
TRES, | |||
OP | |||
) |
Definition at line 879 of file mx-inlines.cc.
#define OP_CUM_FCNN | ( | F, | |
TSRC, | |||
TRES | |||
) |
Definition at line 903 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCN | ( | F, | |
OP | |||
) |
Definition at line 1133 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCN2 | ( | F, | |
OP | |||
) |
Definition at line 1208 of file mx-inlines.cc.
#define OP_CUMMINMAX_FCNN | ( | F | ) |
Definition at line 1338 of file mx-inlines.cc.
#define OP_MINMAX_FCN | ( | F, | |
OP | |||
) |
Definition at line 933 of file mx-inlines.cc.
#define OP_MINMAX_FCN2 | ( | F, | |
OP | |||
) |
Definition at line 986 of file mx-inlines.cc.
#define OP_MINMAX_FCNN | ( | F | ) |
Definition at line 1075 of file mx-inlines.cc.
#define OP_RED_ALLC | ( | ac, | |
el | |||
) |
Definition at line 737 of file mx-inlines.cc.
#define OP_RED_ANYC | ( | ac, | |
el | |||
) |
Definition at line 728 of file mx-inlines.cc.
#define OP_RED_FCN | ( | F, | |
TSRC, | |||
TRES, | |||
OP, | |||
ZERO | |||
) |
Definition at line 746 of file mx-inlines.cc.
#define OP_RED_FCN2 | ( | F, | |
TSRC, | |||
TRES, | |||
OP, | |||
ZERO | |||
) |
#define OP_RED_FCNN | ( | F, | |
TSRC, | |||
TRES | |||
) |
Definition at line 827 of file mx-inlines.cc.
Definition at line 683 of file mx-inlines.cc.
Definition at line 682 of file mx-inlines.cc.
Definition at line 684 of file mx-inlines.cc.
Definition at line 685 of file mx-inlines.cc.
#define OP_ROW_SHORT_CIRCUIT | ( | F, | |
PRED, | |||
ZERO | |||
) |
#define PROMOTE_DOUBLE | ( | T | ) | typename subst_template_param<std::complex, T, double>::type |
Definition at line 757 of file mx-inlines.cc.
|
inline |
Definition at line 597 of file mx-inlines.cc.
|
inline |
Definition at line 505 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), do_bsxfun_op(), err_nonconformant(), is_valid_bsxfun(), r, and x.
|
inline |
Definition at line 549 of file mx-inlines.cc.
References do_inplace_bsxfun_op(), err_nonconformant(), is_valid_inplace_bsxfun(), r, and x.
|
inline |
Definition at line 568 of file mx-inlines.cc.
|
inline |
Definition at line 587 of file mx-inlines.cc.
References Array< T, Alloc >::data(), and Array< T, Alloc >::numel().
|
inline |
Definition at line 1563 of file mx-inlines.cc.
|
inline |
Definition at line 1639 of file mx-inlines.cc.
|
inline |
Definition at line 1623 of file mx-inlines.cc.
|
inline |
Definition at line 1658 of file mx-inlines.cc.
|
inline |
Definition at line 496 of file mx-inlines.cc.
References r.
|
inline |
Definition at line 1600 of file mx-inlines.cc.
|
inline |
Definition at line 1580 of file mx-inlines.cc.
|
inline |
Definition at line 1539 of file mx-inlines.cc.
Definition at line 482 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 470 of file mx-inlines.cc.
|
inline |
Definition at line 539 of file mx-inlines.cc.
References Array< T, Alloc >::data(), Array< T, Alloc >::dims(), r, and x.
for | ( | ) | = i |
Definition at line 764 of file mx-inlines.cc.
|
inline |
Definition at line 1508 of file mx-inlines.cc.
Referenced by MArray< T >::idx_add_nd().
|
inline |
Definition at line 176 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 169 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 162 of file mx-inlines.cc.
References x.
Referenced by mx_inline_and2(), mx_inline_not(), and mx_inline_or2().
|
inline |
Definition at line 108 of file mx-inlines.cc.
Referenced by Sparse< T, Alloc >::assign(), and operator+().
|
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 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 127 of file mx-inlines.cc.
|
inline |
Definition at line 860 of file mx-inlines.cc.
|
inline |
Definition at line 825 of file mx-inlines.cc.
Referenced by boolNDArray::all(), charNDArray::all(), ComplexNDArray::all(), NDArray::all(), FloatComplexNDArray::all(), and FloatNDArray::all().
|
inline |
Definition at line 273 of file mx-inlines.cc.
References isfinite(), n, 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 |
|
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 228 of file mx-inlines.cc.
References logical_value(), n, r, and x.
Referenced by mx_el_and_assign().
|
inline |
Definition at line 236 of file mx-inlines.cc.
|
inline |
Definition at line 223 of file mx-inlines.cc.
|
inline |
Definition at line 223 of file mx-inlines.cc.
|
inline |
Definition at line 223 of file mx-inlines.cc.
|
inline |
Definition at line 859 of file mx-inlines.cc.
Referenced by boolNDArray::any(), charNDArray::any(), ComplexNDArray::any(), NDArray::any(), FloatComplexNDArray::any(), and FloatNDArray::any().
|
inline |
Definition at line 260 of file mx-inlines.cc.
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 286 of file mx-inlines.cc.
Referenced by NDArray::any_element_is_negative(), and FloatNDArray::any_element_is_negative().
|
inline |
Definition at line 299 of file mx-inlines.cc.
Referenced by NDArray::any_element_is_positive(), and FloatNDArray::any_element_is_positive().
|
inline |
Definition at line 854 of file mx-inlines.cc.
|
inline |
Definition at line 931 of file mx-inlines.cc.
|
inline |
Definition at line 901 of file mx-inlines.cc.
|
inline |
Definition at line 877 of file mx-inlines.cc.
|
inline |
Definition at line 1395 of file mx-inlines.cc.
|
inline |
Definition at line 1336 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 1202 of file mx-inlines.cc.
|
inline |
Definition at line 1395 of file mx-inlines.cc.
|
inline |
Definition at line 1336 of file mx-inlines.cc.
void mx_inline_cummax | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 1202 of file mx-inlines.cc.
Referenced by ComplexNDArray::cummax(), NDArray::cummax(), FloatComplexNDArray::cummax(), FloatNDArray::cummax(), and intNDArray< T >::cummax().
|
inline |
Definition at line 1394 of file mx-inlines.cc.
|
inline |
Definition at line 1335 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 1201 of file mx-inlines.cc.
|
inline |
Definition at line 1394 of file mx-inlines.cc.
|
inline |
Definition at line 1335 of file mx-inlines.cc.
void mx_inline_cummin | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 1201 of file mx-inlines.cc.
Referenced by ComplexNDArray::cummin(), NDArray::cummin(), FloatComplexNDArray::cummin(), FloatNDArray::cummin(), and intNDArray< T >::cummin().
|
inline |
Definition at line 930 of file mx-inlines.cc.
|
inline |
Definition at line 900 of file mx-inlines.cc.
|
inline |
Definition at line 876 of file mx-inlines.cc.
Referenced by ComplexNDArray::cumprod(), NDArray::cumprod(), FloatComplexNDArray::cumprod(), and FloatNDArray::cumprod().
|
inline |
Definition at line 929 of file mx-inlines.cc.
|
inline |
Definition at line 899 of file mx-inlines.cc.
|
inline |
Definition at line 875 of file mx-inlines.cc.
Referenced by intNDArray< T >::cumsum(), ComplexNDArray::cumsum(), NDArray::cumsum(), FloatComplexNDArray::cumsum(), and FloatNDArray::cumsum().
|
inline |
Definition at line 1481 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 1440 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 1398 of file mx-inlines.cc.
Referenced by ComplexNDArray::diff(), NDArray::diff(), FloatComplexNDArray::diff(), FloatNDArray::diff(), and intNDArray< T >::diff().
|
inline |
Definition at line 111 of file mx-inlines.cc.
Referenced by quotient().
|
inline |
Definition at line 111 of file mx-inlines.cc.
|
inline |
Definition at line 111 of file mx-inlines.cc.
|
inline |
Definition at line 130 of file mx-inlines.cc.
Referenced by operator/=(), and quotient_eq().
|
inline |
Definition at line 130 of file mx-inlines.cc.
|
inline |
Definition at line 856 of file mx-inlines.cc.
Referenced by FloatComplexNDArray::dprod(), and FloatNDArray::dprod().
|
inline |
Definition at line 853 of file mx-inlines.cc.
Referenced by intNDArray< T >::dsum(), FloatComplexNDArray::dsum(), and FloatNDArray::dsum().
|
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.
|
inline |
Definition at line 577 of file mx-inlines.cc.
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 48 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 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 |
|
inline |
Definition at line 72 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 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 451 of file mx-inlines.cc.
|
inline |
Definition at line 1131 of file mx-inlines.cc.
|
inline |
Definition at line 1073 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 980 of file mx-inlines.cc.
|
inline |
Definition at line 1131 of file mx-inlines.cc.
|
inline |
Definition at line 1073 of file mx-inlines.cc.
void mx_inline_max | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 980 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 1130 of file mx-inlines.cc.
|
inline |
Definition at line 1072 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 979 of file mx-inlines.cc.
|
inline |
Definition at line 1130 of file mx-inlines.cc.
|
inline |
Definition at line 1072 of file mx-inlines.cc.
void mx_inline_min | ( | const T * | v, |
T * | r, | ||
octave_idx_type | n | ||
) |
Definition at line 979 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 110 of file mx-inlines.cc.
Referenced by product().
|
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 product_eq().
|
inline |
Definition at line 129 of file mx-inlines.cc.
|
inline |
Definition at line 157 of file mx-inlines.cc.
|
inline |
Definition at line 157 of file mx-inlines.cc.
|
inline |
Definition at line 157 of file mx-inlines.cc.
void mx_inline_not | ( | std::size_t | n, |
bool * | r, | ||
const X * | x | ||
) |
Definition at line 183 of file mx-inlines.cc.
References logical_value(), n, r, and x.
Referenced by boolNDArray::operator!(), ComplexNDArray::operator!(), NDArray::operator!(), FloatComplexNDArray::operator!(), and FloatNDArray::operator!().
|
inline |
Definition at line 190 of file mx-inlines.cc.
Referenced by boolNDArray::invert().
|
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 222 of file mx-inlines.cc.
|
inline |
Definition at line 222 of file mx-inlines.cc.
|
inline |
Definition at line 222 of file mx-inlines.cc.
|
inline |
Definition at line 81 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 220 of file mx-inlines.cc.
|
inline |
Definition at line 244 of file mx-inlines.cc.
References logical_value(), n, r, and x.
Referenced by mx_el_or_assign().
|
inline |
Definition at line 252 of file mx-inlines.cc.
|
inline |
Definition at line 224 of file mx-inlines.cc.
|
inline |
Definition at line 224 of file mx-inlines.cc.
|
inline |
Definition at line 224 of file mx-inlines.cc.
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 855 of file mx-inlines.cc.
Referenced by intNDArray< T >::prod(), ComplexNDArray::prod(), NDArray::prod(), FloatComplexNDArray::prod(), and FloatNDArray::prod().
|
inline |
|
inline |
Definition at line 109 of file mx-inlines.cc.
Referenced by Sparse< T, Alloc >::delete_elements(), and operator-().
|
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 ComplexColumnVector::operator-=(), FloatComplexColumnVector::operator-=(), FloatComplexMatrix::operator-=(), FloatComplexRowVector::operator-=(), ComplexMatrix::operator-=(), ComplexRowVector::operator-=(), and operator-=().
|
inline |
Definition at line 128 of file mx-inlines.cc.
|
inline |
Definition at line 760 of file mx-inlines.cc.
Referenced by intNDArray< T >::sum(), ComplexNDArray::sum(), NDArray::sum(), FloatComplexNDArray::sum(), and FloatNDArray::sum().
|
inline |
Definition at line 852 of file mx-inlines.cc.
|
inline |
Definition at line 858 of file mx-inlines.cc.
|
inline |
Definition at line 763 of file mx-inlines.cc.
Referenced by ComplexNDArray::sumsq(), NDArray::sumsq(), FloatComplexNDArray::sumsq(), and FloatNDArray::sumsq().
|
inline |
Definition at line 857 of file mx-inlines.cc.
|
inline |
Definition at line 784 of file mx-inlines.cc.
|
inline |
|
inline |
Definition at line 64 of file mx-inlines.cc.
Referenced by MArray< T >::changesign().
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 409 of file mx-inlines.cc.
|
inline |
Definition at line 409 of file mx-inlines.cc.
|
inline |
Definition at line 411 of file mx-inlines.cc.
|
inline |
Definition at line 411 of file mx-inlines.cc.
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 408 of file mx-inlines.cc.
|
inline |
Definition at line 408 of file mx-inlines.cc.
|
inline |
Definition at line 410 of file mx-inlines.cc.
|
inline |
Definition at line 410 of file mx-inlines.cc.
|
inline |
Definition at line 1708 of file mx-inlines.cc.
Referenced by ComplexNDArray::xsum(), and NDArray::xsum().
|
inline |
Definition at line 1739 of file mx-inlines.cc.
|
inline |
Definition at line 1720 of file mx-inlines.cc.
OOP_RED_FCN | ( | mx_inline_all | , |
T | , | ||
bool | , | ||
OP_RED_ALLC | , | ||
true | |||
) | const |
OOP_RED_FCN | ( | mx_inline_dsum | , |
T | , | ||
typename subst_template_param< std::complex, T, double >::type | , | ||
op_dble_sum | , | ||
0. | 0 | ||
) | const |
OOP_RED_FCN | ( | mx_inline_prod | , |
T | , | ||
T | , | ||
OP_RED_PROD | , | ||
1 | |||
) |
Definition at line 761 of file mx-inlines.cc.
OOP_RED_FCN | ( | mx_inline_sumsq | , |
std::complex< T > | , | ||
T | , | ||
OP_RED_SUMSQC | , | ||
0 | |||
) | const |
OOP_RED_FCN2 | ( | mx_inline_all_r | , |
T | , | ||
bool | , | ||
OP_RED_ALLR | , | ||
true | |||
) | const |
OOP_RED_FCN2 | ( | mx_inline_dsum | , |
T | , | ||
typename subst_template_param< std::complex, T, double >::type | , | ||
op_dble_sum | , | ||
0. | 0 | ||
) | const |
OOP_RED_FCN2 | ( | mx_inline_prod | , |
T | , | ||
T | , | ||
OP_RED_PROD | , | ||
1 | |||
) | const |
OOP_RED_FCN2 | ( | mx_inline_sumsq | , |
std::complex< T > | , | ||
T | , | ||
OP_RED_SUMSQC | , | ||
0 | |||
) | const |
|
inline |
Definition at line 695 of file mx-inlines.cc.
References ac.
|
inline |
Definition at line 702 of file mx-inlines.cc.
References ac, and octave_int< T >::double_value().
|
inline |
Definition at line 688 of file mx-inlines.cc.
References ac.
|
inline |
Definition at line 715 of file mx-inlines.cc.
References ac.
|
inline |
Definition at line 722 of file mx-inlines.cc.
References ac, and octave_int< T >::double_value().
|
inline |
Definition at line 708 of file mx-inlines.cc.
References ac.
|
inline |
Definition at line 1696 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 665 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 677 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 627 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 640 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 652 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 612 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 659 of file mx-inlines.cc.
|
inline |
Definition at line 671 of file mx-inlines.cc.
|
inline |
Definition at line 620 of file mx-inlines.cc.
References x.
|
inline |
Definition at line 634 of file mx-inlines.cc.
|
inline |
Definition at line 646 of file mx-inlines.cc.
|
inline |
Definition at line 605 of file mx-inlines.cc.
References x.
return ac |
Definition at line 761 of file mx-inlines.cc.
Referenced by op_dble_prod(), and op_dble_sum().
else continue |
Definition at line 764 of file mx-inlines.cc.
octave_idx_type* iact = octave_local_buffer_iact .get () |
Definition at line 824 of file mx-inlines.cc.
bool octave_idx_type m |
Definition at line 781 of file mx-inlines.cc.
Referenced by Cell::Cell(), octave_class::exemplar_info::exemplar_info(), octave_map::octave_map(), octave_scalar_map::octave_scalar_map(), svd< T >::svd(), ov_range< T >::all(), ov_range< T >::any(), any_all_test(), cmdline_options::as_octave_value(), property_list::as_struct(), Sparse< T, Alloc >::assign(), gtk_manager::available_toolkits_list(), blkmm_internal(), octave_sparse_matrix::bool_array_value(), cam2xform(), opengl_renderer::change_marker(), check_access(), column_norms(), stdiostream::create(), zstdiostream::create(), qr< T >::delete_col(), Array< T, Alloc >::delete_elements(), qr< T >::delete_row(), octave_base_diag< FloatComplexDiagMatrix, FloatComplexMatrix >::diag(), Cell::diag(), octave_base_matrix< MT >::diag(), octave_complex::diag(), octave_complex_matrix::diag(), octave_float_scalar::diag(), octave_float_complex::diag(), octave_float_complex_matrix::diag(), octave_float_matrix::diag(), octave_matrix::diag(), octave_scalar::diag(), octave_value::diag(), Array< T, Alloc >::diag(), boolNDArray::diag(), charNDArray::diag(), ComplexMatrix::diag(), ComplexNDArray::diag(), Matrix::diag(), NDArray::diag(), FloatComplexMatrix::diag(), FloatComplexNDArray::diag(), FloatMatrix::diag(), FloatNDArray::diag(), intNDArray< T >::diag(), ov_range< T >::diag(), dmdm_div_impl(), dmdm_leftdiv_impl(), dmm_leftdiv_impl(), do_blkmm(), color_property::do_set(), opengl_renderer::draw_patch(), opengl_renderer::draw_text_background(), symbol_scope_rep::dump(), symbol_table::dump(), octave_base_value::dump(), octave_user_code::dump(), octave_user_function::dump(), EigsComplexNonSymmetricMatrix(), EigsComplexNonSymmetricMatrixShift(), EigsRealNonSymmetricMatrix(), EigsRealNonSymmetricMatrixShift(), EigsRealSymmetricMatrix(), EigsRealSymmetricMatrixShift(), ellipj(), F__fieldnames__(), base_properties::factory_defaults(), root_figure::properties::factory_defaults(), figure::properties::factory_defaults(), axes::properties::factory_defaults(), line::properties::factory_defaults(), text::properties::factory_defaults(), image::properties::factory_defaults(), light::properties::factory_defaults(), patch::properties::factory_defaults(), scatter::properties::factory_defaults(), surface::properties::factory_defaults(), hggroup::properties::factory_defaults(), uimenu::properties::factory_defaults(), uicontextmenu::properties::factory_defaults(), uicontrol::properties::factory_defaults(), uibuttongroup::properties::factory_defaults(), uipanel::properties::factory_defaults(), uitable::properties::factory_defaults(), uitoolbar::properties::factory_defaults(), uipushtool::properties::factory_defaults(), uitoggletool::properties::factory_defaults(), Fbitshift(), Fchol(), Fcholinv(), Fclass(), Fdbstatus(), Fdet(), Fdiag(), Fdot(), features(), Fellipj(), Ferror(), base_parser::finish_matrix(), Finv(), Fisfield(), octave::float_identity_matrix(), Flu(), Fmatrix_type(), Fordschur(), Fpinv(), Fqr(), Fquadcc(), Frandperm(), Frcond(), Fresize(), Frmfield(), FSIG(), Fsize(), Fspalloc(), Fsparse(), Fstruct2cell(), octave::Fterminal_size(), octave::Funame(), base_properties::get(), root_figure::properties::get(), figure::properties::get(), axes::properties::get(), line::properties::get(), text::properties::get(), image::properties::get(), light::properties::get(), patch::properties::get(), scatter::properties::get(), surface::properties::get(), hggroup::properties::get(), uimenu::properties::get(), uicontextmenu::properties::get(), uicontrol::properties::get(), uibuttongroup::properties::get(), uipanel::properties::get(), uitable::properties::get(), uitoolbar::properties::get(), uipushtool::properties::get(), uitoggletool::properties::get(), tree_evaluator::get_autoload_map(), base_properties::get_dynamic(), text::properties::get_extent(), uicontrol::properties::get_extent(), uitable::properties::get_extent(), profiler::get_flat(), profiler::get_hierarchical(), array_property::get_limits(), opengl_functions::glMultMatrixd(), higham(), identity_matrix(), octave::identity_matrix(), Sparse< T, Alloc >::index(), opengl_renderer::init_marker(), qr< T >::insert_col(), qr< T >::insert_row(), install_dld_function(), sparse_chol< chol_type >::inverse(), isvector(), sparse_chol< chol_type >::L(), lin_interpn(), linspace(), octave_class::load_ascii(), octave_struct::load_ascii(), octave_scalar_struct::load_ascii(), octave_bool_matrix::load_binary(), octave_sparse_bool_matrix::load_binary(), octave_class::load_binary(), octave_complex_diag_matrix::load_binary(), octave_complex_matrix::load_binary(), octave_sparse_complex_matrix::load_binary(), octave_float_complex_diag_matrix::load_binary(), octave_float_complex_matrix::load_binary(), octave_float_diag_matrix::load_binary(), octave_float_matrix::load_binary(), octave_perm_matrix::load_binary(), octave_diag_matrix::load_binary(), octave_matrix::load_binary(), octave_sparse_matrix::load_binary(), octave_char_matrix_str::load_binary(), octave_struct::load_binary(), octave_scalar_struct::load_binary(), octave_base_int_matrix< T >::load_binary(), octave_sparse_bool_matrix::load_hdf5(), octave_cell::load_hdf5(), octave_class::load_hdf5(), octave_complex_matrix::load_hdf5(), octave_sparse_complex_matrix::load_hdf5(), octave_float_complex_matrix::load_hdf5(), octave_float_matrix::load_hdf5(), octave_matrix::load_hdf5(), octave_sparse_matrix::load_hdf5(), octave_char_matrix_str::load_hdf5(), octave_struct::load_hdf5(), octave_scalar_struct::load_hdf5(), octave_base_int_matrix< T >::load_hdf5_internal(), gtk_manager::loaded_toolkits_list(), ComplexMatrix::lssolve(), FloatComplexMatrix::lssolve(), FloatMatrix::lssolve(), Matrix::lssolve(), Array< T, Alloc >::map(), octave_bool_matrix::map(), octave_sparse_bool_matrix::map(), octave_bool::map(), octave_uint64_matrix::map(), map2Cell(), matrix_norm(), max(), mdm_div_impl(), mexGet(), mexGet_interleaved(), min(), mxSetM(), octave_print_internal(), operator*(), operator<<(), PermMatrix::power(), read_mat5_integer_data(), DiagArray2< T >::resize(), octave_user_function::restore_warning_states(), row_norms(), octave_class::save_ascii(), octave_struct::save_ascii(), octave_scalar_struct::save_ascii(), octave_class::save_binary(), octave_complex_diag_matrix::save_binary(), octave_complex_matrix::save_binary(), octave_float_complex_diag_matrix::save_binary(), octave_float_complex_matrix::save_binary(), octave_float_diag_matrix::save_binary(), octave_float_matrix::save_binary(), octave_diag_matrix::save_binary(), octave_matrix::save_binary(), octave_char_matrix_str::save_binary(), octave_struct::save_binary(), octave_scalar_struct::save_binary(), octave_sparse_bool_matrix::save_hdf5(), octave_class::save_hdf5(), octave_complex_matrix::save_hdf5(), octave_sparse_complex_matrix::save_hdf5(), octave_float_complex_matrix::save_hdf5(), octave_float_matrix::save_hdf5(), octave_matrix::save_hdf5(), octave_sparse_matrix::save_hdf5(), octave_char_matrix_str::save_hdf5(), octave_struct::save_hdf5(), octave_scalar_struct::save_hdf5(), save_mat_ascii_data(), save_mat_binary_data(), lin_scaler::scale(), log_scaler::scale(), neg_log_scaler::scale(), scaler::scale(), graphics_xform::scale(), scale(), graphics_object::set(), mxArray::set_m(), qr< T >::shift_cols(), Array< T, Alloc >::sort(), Sparse< T, Alloc >::sort(), svd_matrix_norm(), transform(), translate(), ov_range< T >::try_narrowing_conversion(), unit_cube(), lu< T >::update(), qr< T >::update(), lu< T >::update_piv(), base_graphics_object::values_as_string(), base_graphics_object::values_as_struct(), windows_glob(), xform(), xform_matrix(), xform_scale(), xform_translate(), graphics_xform::xscale(), graphics_xform::yscale(), and graphics_xform::zscale().
bool octave_idx_type octave_idx_type n { T ac = 0 |
Definition at line 761 of file mx-inlines.cc.
Referenced by Cell::Cell(), charNDArray::charNDArray(), ComplexNDArray::ComplexNDArray(), FloatComplexNDArray::FloatComplexNDArray(), FloatNDArray::FloatNDArray(), NDArray::NDArray(), octave_class::octave_class(), octave_fields::octave_fields(), octave_value_list::octave_value_list(), PermMatrix::PermMatrix(), Sparse< T, Alloc >::Sparse(), string_vector::string_vector(), svd< T >::svd(), tree_index_expression::tree_index_expression(), all_colon_equiv(), octave_value_list::all_scalars(), octave_value_list::all_strings_p(), octave_user_function::all_va_args(), mxArray::alloc(), dim_vector::alloc(), octave_value_list::any_cell(), any_orig_empty(), octave_value_list::append(), tree_index_expression::append(), array_norm_2(), Array< octave_value * >::assign(), Array< T, Alloc >::assign(), Sparse< T, Alloc >::assign(), octave_base_matrix< MT >::assign(), idx_vector::assign(), lexical_feedback::token_cache::at(), call_stack::backtrace_frames(), aepbalance< MT >::balancing_matrix(), bitshift(), blkmm_internal(), idx_vector::bloop(), tree_evaluator::breaking(), mxArray::calloc(), Array< T, Alloc >::cat(), octave_map::cat(), Sparse< T, Alloc >::cat(), Cell::cellstr_value(), Array< T, Alloc >::checkelem(), Sparse< T, Alloc >::checkelem(), idx_vector::checkelem(), command_history::clean_up_and_save(), ComplexColumnVector::clear(), ComplexRowVector::clear(), ColumnVector::clear(), RowVector::clear(), FloatComplexColumnVector::clear(), FloatColumnVector::clear(), FloatComplexRowVector::clear(), FloatRowVector::clear(), idx_vector::complement(), Sparse< T, Alloc >::compute_index(), compute_index(), tree_evaluator::continuing(), ov_range< T >::could_be_trivial_range(), stdiostream::create(), zstdiostream::create(), octave_iprocstream::create(), octave_oprocstream::create(), istream::create(), ostream::create(), tree_evaluator::dbupdown(), call_stack::dbupdown(), tree_evaluator::debug_frame(), qr< T >::delete_col(), Array< T, Alloc >::delete_elements(), qr< T >::delete_row(), chol< T >::delete_sym(), octave_base_diag< FloatComplexDiagMatrix, FloatComplexMatrix >::diag(), Cell::diag(), octave_base_matrix< MT >::diag(), octave_complex::diag(), octave_complex_matrix::diag(), octave_float_scalar::diag(), octave_float_complex::diag(), octave_float_complex_matrix::diag(), octave_float_matrix::diag(), octave_matrix::diag(), octave_scalar::diag(), octave_value::diag(), Array< T, Alloc >::diag(), boolNDArray::diag(), charNDArray::diag(), ComplexMatrix::diag(), ComplexNDArray::diag(), Matrix::diag(), NDArray::diag(), FloatComplexMatrix::diag(), FloatComplexNDArray::diag(), FloatMatrix::diag(), FloatNDArray::diag(), intNDArray< T >::diag(), ov_range< T >::dims(), dmdm_div_impl(), dmdm_leftdiv_impl(), dmm_leftdiv_impl(), do_bitpack(), do_bitunpack(), do_blkmm(), command_editor::do_decode_prompt_string(), LSODE::do_integrate(), DASPK::do_integrate(), DASSL::do_integrate(), command_history::do_set_size(), octave::do_simple_cellfun(), chol< T >::downdate(), opengl_renderer::draw_line(), EigsComplexNonSymmetricFunc(), EigsComplexNonSymmetricMatrix(), EigsComplexNonSymmetricMatrixShift(), EigsRealNonSymmetricFunc(), EigsRealNonSymmetricMatrix(), EigsRealNonSymmetricMatrixShift(), EigsRealSymmetricFunc(), EigsRealSymmetricMatrix(), EigsRealSymmetricMatrixShift(), Array< T, Alloc >::elem(), Sparse< T, Alloc >::elem(), octave_map::elem(), idx_vector::elem(), call_stack::element(), ellipj(), octave_fields::equal_up_to_order(), err_invalid_index(), tree_evaluator::evaluate_end_expression(), tree_multi_assignment::evaluate_n(), tree_index_expression::evaluate_n(), idx_vector::extent(), ComplexRowVector::extract_n(), RowVector::extract_n(), FloatComplexRowVector::extract_n(), FloatRowVector::extract_n(), ComplexColumnVector::extract_n(), ColumnVector::extract_n(), FloatComplexColumnVector::extract_n(), FloatColumnVector::extract_n(), PermMatrix::eye(), F__accumarray_sum__(), F__accumdim_sum__(), F__delaunayn__(), F__eigs__(), F__fltk_uigetfile__(), octave::F__ftp_dir__(), octave::F__ftp_mget__(), F__get__(), F__lin_interpn__(), F__pollardrho__(), octave::F__version_info__(), octave_map::fast_elem_extract(), octave_base_diag< DMT, MT >::fast_elem_extract(), octave_base_matrix< MT >::fast_elem_extract(), octave_base_scalar< ST >::fast_elem_extract(), octave_base_sparse< T >::fast_elem_extract(), octave_lazy_index::fast_elem_extract(), octave_perm_matrix::fast_elem_extract(), ov_range< T >::fast_elem_extract(), octave_struct::fast_elem_extract(), octave_value::fast_elem_extract(), octave_map::fast_elem_insert(), octave_base_matrix< MT >::fast_elem_insert(), octave_struct::fast_elem_insert(), octave_value::fast_elem_insert(), Fbitshift(), Fchar(), Fchol(), Fcholdelete(), Fcholinsert(), Fcholshift(), Fcholupdate(), Fdblist(), Fdbstep(), Fdiag(), Fdot(), octave_fields::fieldnames(), idx_vector::fill(), Array< T, Alloc >::find(), find_nonzero_elem_idx(), Fisfield(), octave::Fisindex(), octave::float_identity_matrix(), rand::float_vector(), Flu(), Fnth_element(), Fordschur(), fortran_psifn< double >(), fortran_psifn< float >(), ComplexNDArray::fourier(), NDArray::fourier(), FloatComplexNDArray::fourier(), FloatNDArray::fourier(), Fquadcc(), Frandperm(), freeze(), Freset(), Fset(), Fspalloc(), Fsparse(), Fsqrtm(), Fstrncmp(), Fstrncmpi(), Fstrvcat(), get_children_limits(), octave::get_dimensions(), get_elt_idx(), command_history::get_entry(), profiler::get_flat(), get_scalar_idx(), get_sort_mode(), file_stat::get_stats(), file_fstat::get_stats(), octave_fields::getfield(), opengl_functions::glDeleteTextures(), opengl_functions::glGenTextures(), glob(), call_stack::goto_frame(), tree_evaluator::goto_frame(), octave_value_list::has_magic_colon(), hdf5_types_compatible(), ichol_0(), ichol_t(), identity_matrix(), octave::identity_matrix(), MArray< T >::idx_add(), MArray< T >::idx_add_nd(), MArray< double >::idx_max(), MArray< T >::idx_max(), ComplexNDArray::ifourier(), NDArray::ifourier(), FloatComplexNDArray::ifourier(), FloatNDArray::ifourier(), ilu_0(), ilu_crout(), ilu_tp(), increment_index(), ind2sub(), range< T, typename std::enable_if< std::is_floating_point< T >::value >::type >::index(), Array< T, Alloc >::index(), Sparse< T, Alloc >::index(), Cell::index(), idx_vector::index(), index_in_bounds(), init_mersenne_twister(), inner_do_add_sm_dm(), Array< T, Alloc >::insert(), ComplexNDArray::insert(), FloatComplexNDArray::insert(), qr< T >::insert_col(), qr< T >::insert_row(), chol< T >::insert_sym(), DASRT::integrate(), DASPK::integrate(), DASSL::integrate(), sparse_chol< chol_type >::inverse(), SparseComplexMatrix::inverse(), SparseMatrix::inverse(), idx_vector::inverse_permutation(), idx_vector::is_colon_equiv(), idx_vector::is_cont_range(), idx_vector::is_permutation(), is_scalar(), Cell::iscellstr(), isprimescalar(), Array< T, Alloc >::issorted(), isvector(), idx_vector::length(), lin_interpn(), linspace(), octave_perm_matrix::load_ascii(), Array< T, Alloc >::lookup(), lookup(), idx_vector::loop(), octave_int_arith_base< T, false >::lshift(), octave_int_arith_base< T, true >::lshift(), ComplexMatrix::lssolve(), FloatComplexMatrix::lssolve(), FloatMatrix::lssolve(), Matrix::lssolve(), tree_index_expression::lvalue(), octave_value_list::make_argv(), dim_vector::make_nd_vector(), tree_evaluator::make_value_list(), mxArray::malloc(), glob_match::match(), string_vector::max_length(), tree_evaluator::max_recursion_depth(), idx_vector::maybe_reduce(), mdm_div_impl(), millerrabin(), mx_inline_all_finite(), mx_inline_all_real(), mx_inline_and2(), mx_inline_any_nan(), mx_inline_any_negative(), mx_inline_any_positive(), mx_inline_diff(), mx_inline_equal(), mx_inline_fill(), mx_inline_imag(), mx_inline_iszero(), mx_inline_map(), mx_inline_not(), mx_inline_not2(), mx_inline_notzero(), mx_inline_or2(), mx_inline_pow(), mx_inline_real(), mx_inline_uminus(), mx_inline_uminus2(), mx_inline_xmax(), mx_inline_xmin(), mxCalloc(), mxMalloc(), mxSetN(), octave::sys::file_ops::native_separator_path(), dim_vector::numel(), octave__scan_bytes(), octave_strncasecmp(), octave_tex__scan_bytes(), octave_u8_check_wrapper(), octave_u8_mbsnlen_wrapper(), octave_u8_tolower_wrapper(), octave_u8_toupper_wrapper(), idx_vector::ones_count(), bsxfun_wrapper< R, X, Y, F >::op_mm(), bsxfun_wrapper< R, X, Y, F >::op_ms(), bsxfun_wrapper< R, X, Y, F >::op_sm(), dir_entry::open(), idx_vector::operator()(), operator*(), octave_fields::orderfields(), aepbalance< MT >::permuting_vector(), pollardrho(), octave_value_list::prepend(), ov_range< T >::print_name_tag(), psi(), rand_exponential(), rand_gamma(), rand_normal(), rand_poisson(), rand_uniform(), rand_uniform< double >(), Sparse< T, Alloc >::range_error(), rational_approx(), dim_vector::redim(), command_history::remove(), command_editor::reset_current_command_number(), Sparse< T, Alloc >::resize(), dim_vector::resize(), ComplexColumnVector::resize(), ComplexRowVector::resize(), ColumnVector::resize(), RowVector::resize(), FloatColumnVector::resize(), FloatRowVector::resize(), FloatComplexColumnVector::resize(), FloatComplexRowVector::resize(), octave_value_list::resize(), string_vector::resize(), DiagArray2< T >::resize(), Sparse< T, Alloc >::resize1(), Array< T, Alloc >::resize1(), call_stack::restore_frame(), tree_evaluator::restore_frame(), tree_evaluator::returning(), octave_value_list::reverse(), octave_fields::rmfield(), octave_int_arith_base< T, false >::rshift(), octave_int_arith_base< T, true >::rshift(), octave_perm_matrix::save_ascii(), aepbalance< MT >::scaling_vector(), command_history::set_mark(), mxArray::set_n(), command_editor::set_name(), command_history::set_size(), gzfilebuf::setbuf(), qr< T >::shift_cols(), chol< T >::shift_sym(), Array< octave_value * >::sort(), command_history::stifle(), Cell::string_vector_value(), octave_char_matrix_str::string_vector_value(), sub2ind(), cdef_object_array::subsasgn(), octave_cell::subsasgn(), octave_struct::subsasgn(), octave_scalar_struct::subsasgn(), cdef_object_array::subsref(), swap_bytes(), octave::sys::file_ops::tilde_expand(), command_history::truncate_file(), chol< T >::update(), lu< T >::update(), qr< T >::update(), lu< T >::update_piv(), rand::vector(), vector_equivalent(), tree_evaluator::visit_complex_for_command(), tree_print_code::visit_index_expression(), tree_walker::visit_index_expression(), ov_range< T >::vm_extract_forloop_value(), base_lexer::warn_language_extension_operator(), windows_glob(), Array< T, Alloc >::xelem(), Sparse< T, Alloc >::xelem(), idx_vector::xelem(), xpsi(), c_file_ptr_buf::xsgetn(), c_zfile_ptr_buf::xsgetn(), c_file_ptr_buf::xsputn(), and c_zfile_ptr_buf::xsputn().
octave_idx_type nact = m |
Definition at line 824 of file mx-inlines.cc.
std::unique_ptr< octave_idx_type []> octave_local_buffer_iact { new octave_idx_type [ m ] } |
Definition at line 824 of file mx-inlines.cc.
bool * r |
Definition at line 781 of file mx-inlines.cc.
Referenced by color_values::color_values(), DiagArray2< T >::DiagArray2(), dim_vector::dim_vector(), octave_legacy_range::octave_legacy_range(), Sparse< T, Alloc >::Sparse(), Sparse< T, Alloc >::SparseRep::SparseRep(), text_element_color::text_element_color(), Array< T, Alloc >::assign(), idx_vector::assign(), idx_vector::bloop(), Sparse< T, Alloc >::SparseRep::celem(), DiagArray2< T >::checkelem(), chol2inv(), Array< T, Alloc >::clear(), ComplexDiagMatrix::column(), DiagMatrix::column(), FloatComplexDiagMatrix::column(), FloatDiagMatrix::column(), Array< T, Alloc >::column(), idx_vector::complement(), idx_vector::copy_data(), cross(), do_inplace_bsxfun_op(), do_leftdiv_dm_sm(), do_mm_binary_op(), do_mm_inplace_op(), do_ms_binary_op(), do_ms_inplace_op(), do_mul_dm_sm(), do_mul_sm_dm(), do_mx_inplace_op(), do_mx_unary_op(), do_rightdiv_sm_dm(), do_sm_binary_op(), octave_struct::edit_display(), octave_scalar_struct::edit_display(), EigsComplexNonSymmetricMatrixShift(), EigsRealNonSymmetricMatrixShift(), EigsRealSymmetricMatrixShift(), DiagArray2< T >::elem(), Sparse< T, Alloc >::SparseRep::elem(), elem_xpow(), F__accumarray_sum__(), octave_base_diag< DMT, MT >::fast_elem_extract(), octave_perm_matrix::fast_elem_extract(), Fchol2inv(), idx_vector::fill(), Frandperm(), Frepelems(), ichol_0(), ilu_0(), intNDArray< octave_uint8 >::increment_index(), Array< T, Alloc >::index(), idx_vector::index(), inner_do_add_sm_dm(), Array< T, Alloc >::insert(), boolMatrix::insert(), boolNDArray::insert(), Cell::insert(), charMatrix::insert(), charNDArray::insert(), ComplexColumnVector::insert(), ColumnVector::insert(), FloatComplexColumnVector::insert(), FloatColumnVector::insert(), FloatComplexMatrix::insert(), FloatMatrix::insert(), FloatNDArray::insert(), ComplexMatrix::insert(), Matrix::insert(), ComplexNDArray::insert(), NDArray::insert(), FloatComplexNDArray::insert(), MSparse< T >::insert(), Sparse< T, Alloc >::insert(), SparseBoolMatrix::insert(), SparseComplexMatrix::insert(), SparseMatrix::insert(), int_multiply_overflow(), ComplexDiagMatrix::inverse(), DiagMatrix::inverse(), FloatComplexDiagMatrix::inverse(), FloatDiagMatrix::inverse(), idx_vector::inverse_permutation(), idx_vector::is_cont_range(), Array< T, Alloc >::is_sorted_rows(), isprimescalar(), Array< T, Alloc >::issorted(), octave_base_diag< DMT, MT >::load_ascii(), octave_complex_diag_matrix::load_binary(), octave_float_complex_diag_matrix::load_binary(), octave_float_diag_matrix::load_binary(), octave_diag_matrix::load_binary(), log1p(), idx_vector::loop(), cdef_object_base::make_array(), octave_fields::make_unique(), octave_value::make_unique(), Array< T, Alloc >::make_unique(), Sparse< T, Alloc >::make_unique(), max(), idx_vector::maybe_reduce(), millerrabin(), min(), octave_int_arith_base< T, true >::mod(), mx_inline_and2(), mx_inline_diff(), mx_inline_fill(), mx_inline_imag(), mx_inline_iszero(), mx_inline_map(), mx_inline_not(), mx_inline_not2(), mx_inline_notzero(), mx_inline_or2(), mx_inline_pow(), mx_inline_real(), mx_inline_uminus(), mx_inline_uminus2(), mx_inline_xmax(), mx_inline_xmin(), octave_i_multiply_overflow_wrapper(), octave_li_multiply_overflow_wrapper(), octave_lli_multiply_overflow_wrapper(), octave_print_internal(), octave_ui_multiply_overflow_wrapper(), octave_uli_multiply_overflow_wrapper(), octave_ulli_multiply_overflow_wrapper(), octinternal_do_mul_colpm_sm(), octinternal_do_mul_sm_colpm(), octinternal_do_mul_sm_rowpm(), bsxfun_wrapper< R, X, Y, F >::op_mm(), bsxfun_wrapper< R, X, Y, F >::op_ms(), bsxfun_wrapper< R, X, Y, F >::op_sm(), SparseBoolMatrix::operator!(), SparseComplexMatrix::operator!(), SparseMatrix::operator!(), operator*(), ComplexDiagMatrix::operator+=(), FloatComplexDiagMatrix::operator+=(), DASRT_result::operator=(), Array< T, Alloc >::page(), plus_or_minus(), product(), ComplexDiagMatrix::pseudo_inverse(), ComplexMatrix::pseudo_inverse(), DiagMatrix::pseudo_inverse(), Matrix::pseudo_inverse(), FloatComplexMatrix::pseudo_inverse(), FloatMatrix::pseudo_inverse(), FloatComplexDiagMatrix::pseudo_inverse(), FloatDiagMatrix::pseudo_inverse(), quotient(), rand_gamma(), idx_vector::raw(), read_mat_binary_data(), DiagArray2< T >::resize(), Sparse< T, Alloc >::resize(), Array< T, Alloc >::resize2(), ComplexDiagMatrix::row(), DiagMatrix::row(), FloatComplexDiagMatrix::row(), FloatDiagMatrix::row(), charMatrix::row_as_string(), safemultiply(), octave_complex_diag_matrix::save_binary(), octave_float_complex_diag_matrix::save_binary(), octave_float_diag_matrix::save_binary(), octave_diag_matrix::save_binary(), save_mat_binary_data(), graphics_xform::scale(), Array< T, Alloc >::sort_rows_idx(), sparse_indices_ok(), cdef_object_array::subsref(), times_or_divide(), times_or_divides(), idx_vector::unmask(), lu< T >::update(), lu< T >::update_piv(), DiagArray2< T >::xelem(), xload_binary(), xload_hdf5(), xsave_ascii(), xsave_binary(), and xsave_hdf5().