#include "dMatrix.h"
#include "fMatrix.h"
#include "CMatrix.h"
#include "fCMatrix.h"
#include "dNDArray.h"
#include "fNDArray.h"
#include "CNDArray.h"
#include "fCNDArray.h"
#include "dRowVector.h"
#include "fRowVector.h"
#include "CRowVector.h"
#include "fCRowVector.h"
#include "dColVector.h"
#include "fColVector.h"
#include "CColVector.h"
#include "fCColVector.h"
Go to the source code of this file.
Defines | |
#define | CONV_DECLS(TPREF, RPREF) |
Enumerations | |
enum | convn_type { convn_full, convn_same, convn_valid } |
Functions | |
CONV_DECLS (,) | |
CONV_DECLS (FloatComplex, Float) | |
CONV_DECLS (Float, Float) | |
CONV_DECLS (Complex, Complex) | |
CONV_DECLS (Complex,) |
#define CONV_DECLS | ( | TPREF, | ||
RPREF | ||||
) |
extern OCTAVE_API TPREF ## NDArray \ convn (const TPREF ## NDArray& a, const RPREF ## NDArray& b, convn_type ct); \ extern OCTAVE_API TPREF ## Matrix \ convn (const TPREF ## Matrix& a, const RPREF ## Matrix& b, convn_type ct); \ extern OCTAVE_API TPREF ## Matrix \ convn (const TPREF ## Matrix& a, const RPREF ## ColumnVector& c, \ const RPREF ## RowVector& r, convn_type ct)
Definition at line 54 of file oct-convn.h.
enum convn_type |
Definition at line 47 of file oct-convn.h.
CONV_DECLS | ( | ) |
CONV_DECLS | ( | FloatComplex | , | |
Float | ||||
) |
CONV_DECLS | ( | Float | , | |
Float | ||||
) |
CONV_DECLS | ( | Complex | ) |