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