-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatCompute.h
More file actions
37 lines (29 loc) · 937 Bytes
/
catCompute.h
File metadata and controls
37 lines (29 loc) · 937 Bytes
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
35
36
37
/*
* MATLAB Compiler: 3.0
* Date: Thu Apr 22 15:58:01 2004
* 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" "-m" "-W" "main" "-L"
* "C" "-t" "-T" "link:exe" "-h" "libmmfile.mlib" "catCompute.m"
*/
#ifndef MLF_V2
#define MLF_V2 1
#endif
#ifndef __catCompute_h
#define __catCompute_h 1
#ifdef __cplusplus
extern "C" {
#endif
#include "libmatlb.h"
extern void InitializeModule_catCompute(void);
extern void TerminateModule_catCompute(void);
extern _mexLocalFunctionTable _local_function_table_catCompute;
extern void mlfCatCompute(mxArray * sets, mxArray * filename);
extern void mlxCatCompute(int nlhs,
mxArray * plhs[],
int nrhs,
mxArray * prhs[]);
#ifdef __cplusplus
}
#endif
#endif