#include <algorithm>
#include "dNDArray.h"
#include "CNDArray.h"
#include "defun-dld.h"
Classes | |
class | octave_convn_traits< T1, T2 > |
Defines | |
#define | OCTAVE_CONVN_TRAIT(T1, T2, T3) |
Functions | |
OCTAVE_CONVN_TRAIT (NDArray, NDArray, NDArray) | |
OCTAVE_CONVN_TRAIT (ComplexNDArray, NDArray, ComplexNDArray) | |
OCTAVE_CONVN_TRAIT (NDArray, ComplexNDArray, ComplexNDArray) | |
OCTAVE_CONVN_TRAIT (ComplexNDArray, ComplexNDArray, ComplexNDArray) | |
OCTAVE_CONVN_TRAIT (FloatNDArray, FloatNDArray, FloatNDArray) | |
OCTAVE_CONVN_TRAIT (FloatComplexNDArray, FloatNDArray, FloatComplexNDArray) | |
OCTAVE_CONVN_TRAIT (FloatNDArray, FloatComplexNDArray, FloatComplexNDArray) | |
OCTAVE_CONVN_TRAIT (FloatComplexNDArray, FloatComplexNDArray, FloatComplexNDArray) | |
template<class MTa , class MTb > | |
octave_value | convn (const MTa &a, const MTb &b) |
DEFUN_DLD (__convn__, args,,"-*- texinfo -*-\n\ @deftypefn {Loadable Function} {} __convn__(@var{a}, @var{b})\n\ Undocumented internal function.\n\ @end deftypefn\n\ ") |
#define OCTAVE_CONVN_TRAIT | ( | T1, | |||
T2, | |||||
T3 | ) |
Value:
template<> \ class octave_convn_traits <T1, T2> \ { \ public: \ typedef T3 TR; \ }
octave_value convn | ( | const MTa & | a, | |
const MTb & | b | |||
) | [inline] |
DEFUN_DLD | ( | __convn__ | , | |
args | ||||
) |
OCTAVE_CONVN_TRAIT | ( | FloatComplexNDArray | , | |
FloatComplexNDArray | , | |||
FloatComplexNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | FloatNDArray | , | |
FloatComplexNDArray | , | |||
FloatComplexNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | FloatComplexNDArray | , | |
FloatNDArray | , | |||
FloatComplexNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | FloatNDArray | , | |
FloatNDArray | , | |||
FloatNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | ComplexNDArray | , | |
ComplexNDArray | , | |||
ComplexNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | NDArray | , | |
ComplexNDArray | , | |||
ComplexNDArray | ||||
) |
OCTAVE_CONVN_TRAIT | ( | ComplexNDArray | , | |
NDArray | , | |||
ComplexNDArray | ||||
) |