frac_tree_p_main.cpp

来自「本人收集的一些有关matlab的代码程序设计 也不知道改选什么分类」· C++ 代码 · 共 31 行

CPP
31
字号
//
// 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 + =
减小字号Ctrl + -
显示快捷键?