-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.h
34 lines (26 loc) · 817 Bytes
/
dot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* MATLAB Compiler: 2.1
* Date: Thu Sep 26 16:52:20 2002
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integer_for_loops:on" "-O"
* "array_indexing:on" "-O" "optimize_conditionals:on" "-x" "-W" "mex" "-L" "C"
* "-t" "-T" "link:mexlibrary" "libmatlbmx.mlib" "corrvec"
*/
#ifndef MLF_V2
#define MLF_V2 1
#endif
#ifndef __dot_h
#define __dot_h 1
#ifdef __cplusplus
extern "C" {
#endif
#include "libmatlb.h"
extern void InitializeModule_dot(void);
extern void TerminateModule_dot(void);
extern _mexLocalFunctionTable _local_function_table_dot;
extern mxArray * mlfDot(mxArray * a, mxArray * b, mxArray * dim);
extern void mlxDot(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]);
#ifdef __cplusplus
}
#endif
#endif