GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
MArray.cc File Reference
#include "MArray.h"
#include "Array-util.h"
#include "lo-error.h"

Go to the source code of this file.

Macros

#define INSTANTIATE_MARRAY(T, API)
 
#define MARRAY_NDND_OP(FCN, OP, FN)
 
#define MARRAY_NDS_OP(OP, FN)
 
#define MARRAY_SND_OP(OP, FN)
 

Functions

template<typename T >
MArray< T > operator* (const MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator* (const T &s, const MArray< T > &a)
 
template<typename T >
MArray< T > & operator*= (MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator+ (const MArray< T > &a)
 
template<typename T >
MArray< T > operator+ (const MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > operator+ (const MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator+ (const T &s, const MArray< T > &a)
 
template<typename T >
MArray< T > & operator+= (MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > & operator+= (MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator- (const MArray< T > &a)
 
template<typename T >
MArray< T > operator- (const MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > operator- (const MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator- (const T &s, const MArray< T > &a)
 
template<typename T >
MArray< T > & operator-= (MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > & operator-= (MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator/ (const MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > operator/ (const T &s, const MArray< T > &a)
 
template<typename T >
MArray< T > & operator/= (MArray< T > &a, const T &s)
 
template<typename T >
MArray< T > product (const MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > & product_eq (MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > quotient (const MArray< T > &a, const MArray< T > &b)
 
template<typename T >
MArray< T > & quotient_eq (MArray< T > &a, const MArray< T > &b)
 

Macro Definition Documentation

◆ INSTANTIATE_MARRAY

#define INSTANTIATE_MARRAY (   T,
  API 
)
Value:
template <> API void \
MArray<T>::instantiation_guard () { } \
\
template class API MArray<T>
Template for N-dimensional array classes with like-type math operators.
Definition: MArray.h:63

Definition at line 385 of file MArray.cc.

◆ MARRAY_NDND_OP

#define MARRAY_NDND_OP (   FCN,
  OP,
  FN 
)
Value:
template <typename T> \
FCN (const MArray<T>& a, const MArray<T>& b) \
{ \
return do_mm_binary_op<T, T, T> (a, b, FN, FN, FN, #FCN); \
}
@ FCN
Definition: oct-parse.h:135

Definition at line 349 of file MArray.cc.

◆ MARRAY_NDS_OP

#define MARRAY_NDS_OP (   OP,
  FN 
)
Value:
template <typename T> \
MArray<T> \
operator OP (const MArray<T>& a, const T& s) \
{ \
return do_ms_binary_op<T, T, T> (a, s, FN); \
}

Definition at line 319 of file MArray.cc.

◆ MARRAY_SND_OP

#define MARRAY_SND_OP (   OP,
  FN 
)
Value:
template <typename T> \
MArray<T> \
operator OP (const T& s, const MArray<T>& a) \
{ \
return do_sm_binary_op<T, T, T> (s, a, FN); \
}

Definition at line 334 of file MArray.cc.

Function Documentation

◆ operator*() [1/2]

template<typename T >
MArray<T> operator* ( const MArray< T > &  a,
const T &  s 
)

Definition at line 329 of file MArray.cc.

◆ operator*() [2/2]

template<typename T >
MArray<T> operator* ( const T &  s,
const MArray< T > &  a 
)

Definition at line 344 of file MArray.cc.

◆ operator*=()

template<typename T >
MArray<T>& operator*= ( MArray< T > &  a,
const T &  s 
)

Definition at line 251 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_mul2().

◆ operator+() [1/4]

template<typename T >
MArray<T> operator+ ( const MArray< T > &  a)

Definition at line 364 of file MArray.cc.

◆ operator+() [2/4]

template<typename T >
MArray<T> operator+ ( const MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 357 of file MArray.cc.

◆ operator+() [3/4]

template<typename T >
MArray<T> operator+ ( const MArray< T > &  a,
const T &  s 
)

Definition at line 327 of file MArray.cc.

◆ operator+() [4/4]

template<typename T >
MArray<T> operator+ ( const T &  s,
const MArray< T > &  a 
)

Definition at line 342 of file MArray.cc.

◆ operator+=() [1/2]

template<typename T >
MArray<T>& operator+= ( MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 275 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_add2().

◆ operator+=() [2/2]

template<typename T >
MArray<T>& operator+= ( MArray< T > &  a,
const T &  s 
)

Definition at line 229 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_add2().

◆ operator-() [1/4]

template<typename T >
MArray<T> operator- ( const MArray< T > &  a)

Definition at line 371 of file MArray.cc.

References mx_inline_uminus().

◆ operator-() [2/4]

template<typename T >
MArray<T> operator- ( const MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 358 of file MArray.cc.

◆ operator-() [3/4]

template<typename T >
MArray<T> operator- ( const MArray< T > &  a,
const T &  s 
)

Definition at line 328 of file MArray.cc.

◆ operator-() [4/4]

template<typename T >
MArray<T> operator- ( const T &  s,
const MArray< T > &  a 
)

Definition at line 343 of file MArray.cc.

◆ operator-=() [1/2]

template<typename T >
MArray<T>& operator-= ( MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 286 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_sub2().

◆ operator-=() [2/2]

template<typename T >
MArray<T>& operator-= ( MArray< T > &  a,
const T &  s 
)

Definition at line 240 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_sub2().

◆ operator/() [1/2]

template<typename T >
MArray<T> operator/ ( const MArray< T > &  a,
const T &  s 
)

Definition at line 330 of file MArray.cc.

◆ operator/() [2/2]

template<typename T >
MArray<T> operator/ ( const T &  s,
const MArray< T > &  a 
)

Definition at line 345 of file MArray.cc.

◆ operator/=()

template<typename T >
MArray<T>& operator/= ( MArray< T > &  a,
const T &  s 
)

Definition at line 262 of file MArray.cc.

References Array< T, Alloc >::is_shared(), and mx_inline_div2().

◆ product()

template<typename T >
MArray<T> product ( const MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 359 of file MArray.cc.

Referenced by product_eq().

◆ product_eq()

template<typename T >
MArray<T>& product_eq ( MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 297 of file MArray.cc.

References Array< T, Alloc >::is_shared(), mx_inline_mul2(), and product().

◆ quotient()

template<typename T >
MArray<T> quotient ( const MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 360 of file MArray.cc.

Referenced by quotient_eq().

◆ quotient_eq()

template<typename T >
MArray<T>& quotient_eq ( MArray< T > &  a,
const MArray< T > &  b 
)

Definition at line 308 of file MArray.cc.

References Array< T, Alloc >::is_shared(), mx_inline_div2(), and quotient().