📄 c6ftest_mainhg.cpp
字号:
//
// MATLAB Compiler: 2.0.1
// Date: Fri May 05 22:24:33 2000
// Arguments: "-p" "-B" "sglcpp" "-m" "-W" "mainhg" "-L" "Cpp" "c6ftest"
//
#include "matlab.hpp"
#include "libsgl.hpp"
#include "c6ftest.hpp"
static mlfFunctionTableEntry function_table[1]
= { { "c6ftest", mlxC6ftest, 0, 1 } };
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 "mlxC6ftest". Finally, it
// clears the feval table and exits.
//
int main(int argc, const char * * argv) {
try {
int status(0);
mwArray varargin(argc - 1, argv + 1);
mwArray result;
mlfHGInitialize(&argc, argv);
result
= feval(
mwValueVarargout(),
mlxC6ftest,
mwVarargin(varargin.cell(colon())));
if (result.IsInitialized() && ! result.IsEmpty()) {
status = int(result(1));
}
mlfHGWaitForFiguresToDie();
mlfHGTerminate();
return status;
} catch(mwException e) {
cout << e;
return 1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -