📄 frac_tree_p_main.cpp
字号:
//
// MATLAB Compiler: 2.0
// Date: Tue Apr 18 10:30:35 2000
// Arguments: "-p" "frac_tree_p.m"
//
#include "matlab.hpp"
#include "frac_tree_p.hpp"
static mlfFunctionTableEntry function_table[1]
= { { "frac_tree_p", mlxFrac_tree_p, 0, 0 } };
static mwFunctionTableInit mcl_function_table_init(1, function_table);
//
// The function "main" is a Compiler-generated main wrapper, suitable for
// building a stand-alone application. It initializes a function table for use
// by the feval function, and then calls the function "mlxFrac_tree_p".
// Finally, it clears the feval table and exits.
//
int main(int argc, const char * * argv) {
try {
mwArray varargin(argc - 1, argv + 1);
feval(
mwAnsVarargout(), mlxFrac_tree_p, mwVarargin(varargin.cell(colon())));
return 0;
} catch(mwException e) {
cout << e;
return 1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -