GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
mx-cs-m.h
Go to the documentation of this file.
1 // DO NOT EDIT -- generated by mk-ops.awk
2 #if ! defined (octave_mx_cs_m_h)
3 #define octave_mx_cs_m_h 1
4 #include "octave-config.h"
5 #include "CMatrix.h"
6 #include "oct-cmplx.h"
7 #include "dMatrix.h"
8  extern OCTAVE_API ComplexMatrix operator + (const Complex&, const Matrix&);
9  extern OCTAVE_API ComplexMatrix operator - (const Complex&, const Matrix&);
10  extern OCTAVE_API ComplexMatrix operator * (const Complex&, const Matrix&);
11  extern OCTAVE_API ComplexMatrix operator / (const Complex&, const Matrix&);
12  extern OCTAVE_API boolMatrix mx_el_lt (const Complex&, const Matrix&);
13  extern OCTAVE_API boolMatrix mx_el_le (const Complex&, const Matrix&);
14  extern OCTAVE_API boolMatrix mx_el_ge (const Complex&, const Matrix&);
15  extern OCTAVE_API boolMatrix mx_el_gt (const Complex&, const Matrix&);
16  extern OCTAVE_API boolMatrix mx_el_eq (const Complex&, const Matrix&);
17  extern OCTAVE_API boolMatrix mx_el_ne (const Complex&, const Matrix&);
18  extern OCTAVE_API boolMatrix mx_el_and (const Complex&, const Matrix&);
19  extern OCTAVE_API boolMatrix mx_el_or (const Complex&, const Matrix&);
20 #endif
Definition: dMatrix.h:42
#define OCTAVE_API
Definition: main.cc:55
boolMatrix mx_el_gt(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
boolMatrix mx_el_eq(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
ComplexMatrix operator-(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:12
boolMatrix mx_el_and(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:14
ComplexMatrix operator/(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:12
boolMatrix mx_el_ge(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
boolMatrix mx_el_or(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:14
ComplexMatrix operator*(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:12
ComplexMatrix operator+(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:12
boolMatrix mx_el_ne(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
boolMatrix mx_el_le(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
boolMatrix mx_el_lt(const Complex &, const Matrix &)
Definition: mx-cs-m.cc:13
std::complex< double > Complex
Definition: oct-cmplx.h:33