⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mcctest3_mainhg.cpp

📁 MATLAB命令行下mcc命令示范3
💻 CPP
字号:
//
// MATLAB Compiler: 2.1
// Date: Wed Oct 24 11:41:55 2001
// 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" "-B" "sglcpp" "-p" "-W"
// "main" "-L" "Cpp" "-t" "-T" "link:exe" "-h" "libmmfile.mlib" "-W" "mainhg"
// "libmwsglm.mlib" "mcctest3" 
//
#include "matlab.hpp"
#include "libsglinit.hpp"
#include "mcctest3.hpp"
#include "subplot.hpp"
#include "libmmfile.hpp"
#include "libmwsglm.hpp"

static mexFunctionTableEntry function_table[2]
  = { { "mcctest3", mlxMcctest3, 0, 0, &_local_function_table_mcctest3 },
      { "subplot", mlxSubplot, 3, 1, &_local_function_table_subplot } };

static _mexcppInitTermTableEntry init_term_table[4]
  = { { libmmfileInitialize, libmmfileTerminate },
      { libmwsglmInitialize, libmwsglmTerminate },
      { InitializeModule_mcctest3, TerminateModule_mcctest3 },
      { InitializeModule_subplot, TerminateModule_subplot } };

static _mexcpp_information _main_info
  = { 1, 2, function_table, 0, NULL, 0, NULL, 4, init_term_table };

//
// The function "main" is a Compiler-generated main wrapper, suitable for
// building a stand-alone application.  It calls a library function to perform
// initialization, call the main function, and perform library termination.
//
int main(int argc, const char * * argv) {
    return mwMainhg(argc, argv, mlxMcctest3, 0, &_main_info);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -