?? frac_tree_plt_mex.c
字號:
/*
* MATLAB Compiler: 2.0
* Date: Tue Apr 18 10:43:29 2000
* Arguments: "-x" "frac_tree_plt.m"
*/
#ifndef MLF_V2
#define MLF_V2 1
#endif
#include "matlab.h"
#include "frac_tree_plt.h"
static mlfFunctionTableEntry function_table[1]
= { { "frac_tree_plt", mlxFrac_tree_plt, 4, 1 } };
/*
* The function "mexFunction" is a Compiler-generated mex wrapper, suitable for
* building a MEX-function. It initializes any persistent variables as well as
* a function table for use by the feval function. It then calls the function
* "mlxFrac_tree_plt". Finally, it clears the feval table and exits.
*/
void mexFunction(int nlhs, mxArray * * plhs, int nrhs, mxArray * * prhs) {
mlfTry {
mlfFunctionTableSetup(1, function_table);
mclImportGlobal(0, NULL);
mlxFrac_tree_plt(nlhs, plhs, nrhs, prhs);
mlfFunctionTableTakedown(1, function_table);
} mlfCatch {
mlfFunctionTableTakedown(1, function_table);
mclMexError();
} mlfEndCatch
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -