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

📄 frac_tree_p_main.cpp

📁 本人收集的一些有关matlab的代码程序设计 也不知道改选什么分类
💻 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 + -