亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? guidata.cpp

?? matlab的可執行程序
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
//
// MATLAB Compiler: 3.0
// Date: Wed Jul 14 12:15:03 2004
// 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" "QQchabu.m" 
//
#include "guidata.hpp"
#include "libsgl.hpp"
#include "libmatlbm.hpp"
#include "libmmfile.hpp"

static mxChar _array1_[15] = { 'U', 's', 'e', 'd', 'B', 'y', 'G', 'U',
                               'I', 'D', 'a', 't', 'a', '_', 'm' };
static mwArray _mxarray0_ = mclInitializeString(15, _array1_);
static mwArray _mxarray2_ = mclInitializeDouble(1.0);
static mwArray _mxarray3_ = mclInitializeDouble(2.0);
static mwArray _mxarray4_ = mclInitializeDouble(0.0);
static mwArray _mxarray5_ = mclInitializeDoubleVector(0, 0, (double *)NULL);

static mxChar _array7_[54] = { 'H', ' ', 'm', 'u', 's', 't', ' ', 'b', 'e',
                               ' ', 't', 'h', 'e', ' ', 'h', 'a', 'n', 'd',
                               'l', 'e', ' ', 't', 'o', ' ', 'a', ' ', 'f',
                               'i', 'g', 'u', 'r', 'e', ' ', 'o', 'r', ' ',
                               'f', 'i', 'g', 'u', 'r', 'e', ' ', 'd', 'e',
                               's', 'c', 'e', 'n', 'd', 'e', 'n', 't', '.' };
static mwArray _mxarray6_ = mclInitializeString(54, _array7_);

static mxChar _array9_[6] = { 'f', 'i', 'g', 'u', 'r', 'e' };
static mwArray _mxarray8_ = mclInitializeString(6, _array9_);

static mxChar _array11_[4] = { 't', 'y', 'p', 'e' };
static mwArray _mxarray10_ = mclInitializeString(4, _array11_);

static mxChar _array13_[6] = { 'p', 'a', 'r', 'e', 'n', 't' };
static mwArray _mxarray12_ = mclInitializeString(6, _array13_);

void InitializeModule_guidata() {
}

void TerminateModule_guidata() {
}

static mwArray guidata_getParentFigure(mwArray fig_in = mwArray::DIN);
#ifdef __cplusplus
extern "C"
#endif
void mlxGuidata_getParentFigure(int nlhs,
                                mxArray * plhs[],
                                int nrhs,
                                mxArray * prhs[]);
static mwArray Mguidata(int nargout_, mwArray h, mwArray data_in);
static mwArray Mguidata_getParentFigure(int nargout_, mwArray fig_in);

static mexFunctionTableEntry local_function_table_[1]
  = { { "getParentFigure", mlxGuidata_getParentFigure, 1, 1, NULL } };

_mexLocalFunctionTable _local_function_table_guidata
  = { 1, local_function_table_ };

//
// The function "Nguidata" contains the nargout interface for the "guidata"
// M-function from file "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines
// 1-99). This interface is only produced if the M-function uses the special
// variable "nargout". The nargout interface allows the number of requested
// outputs to be specified via the nargout argument, as opposed to the normal
// interface which dynamically calculates the number of outputs based on the
// number of non-NULL inputs it receives. This function processes any input
// arguments and passes them to the implementation version of the function,
// appearing above.
//
mwArray Nguidata(int nargout, mwArray h, mwArray data_in) {
    mwArray data = mwArray::UNDEFINED;
    data = Mguidata(nargout, h, data_in);
    return data;
}

//
// The function "guidata" contains the normal interface for the "guidata"
// M-function from file "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines
// 1-99). This function processes any input arguments and passes them to the
// implementation version of the function, appearing above.
//
mwArray guidata(mwArray h, mwArray data_in) {
    int nargout = 1;
    mwArray data = mwArray::UNDEFINED;
    data = Mguidata(nargout, h, data_in);
    return data;
}

//
// The function "Vguidata" contains the void interface for the "guidata"
// M-function from file "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines
// 1-99). The void interface is only produced if the M-function uses the
// special variable "nargout", and has at least one output. The void interface
// function specifies zero output arguments to the implementation version of
// the function, and in the event that the implementation version still returns
// an output (which, in MATLAB, would be assigned to the "ans" variable), it
// deallocates the output. This function processes any input arguments and
// passes them to the implementation version of the function, appearing above.
//
void Vguidata(mwArray h, mwArray data_in) {
    mwArray data = mwArray::UNDEFINED;
    data = Mguidata(0, h, data_in);
}

//
// The function "mlxGuidata" contains the feval interface for the "guidata"
// M-function from file "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines
// 1-99). The feval function calls the implementation version of guidata
// through this function. This function processes any input arguments and
// passes them to the implementation version of the function, appearing above.
//
void mlxGuidata(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
    MW_BEGIN_MLX();
    {
        mwArray mprhs[2];
        mwArray mplhs[1];
        int i;
        mclCppUndefineArrays(1, mplhs);
        if (nlhs > 1) {
            error(
              mwVarargin(
                mwArray(
                  "Run-time Error: File: guidata Line: 1 Column: "
                  "1 The function \"guidata\" was called with mor"
                  "e than the declared number of outputs (1).")));
        }
        if (nrhs > 2) {
            error(
              mwVarargin(
                mwArray(
                  "Run-time Error: File: guidata Line: 1 Column: "
                  "1 The function \"guidata\" was called with mor"
                  "e than the declared number of inputs (2).")));
        }
        for (i = 0; i < 2 && i < nrhs; ++i) {
            mprhs[i] = mwArray(prhs[i], 0);
        }
        for (; i < 2; ++i) {
            mprhs[i].MakeDIN();
        }
        mplhs[0] = Mguidata(nlhs, mprhs[0], mprhs[1]);
        plhs[0] = mplhs[0].FreezeData();
    }
    MW_END_MLX();
}

//
// The function "guidata_getParentFigure" contains the normal interface for the
// "guidata/getParentFigure" M-function from file
// "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines 99-105). This
// function processes any input arguments and passes them to the implementation
// version of the function, appearing above.
//
static mwArray guidata_getParentFigure(mwArray fig_in) {
    int nargout = 1;
    mwArray fig = mwArray::UNDEFINED;
    fig = Mguidata_getParentFigure(nargout, fig_in);
    return fig;
}

//
// The function "mlxGuidata_getParentFigure" contains the feval interface for
// the "guidata/getParentFigure" M-function from file
// "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines 99-105). The feval
// function calls the implementation version of guidata/getParentFigure through
// this function. This function processes any input arguments and passes them
// to the implementation version of the function, appearing above.
//
void mlxGuidata_getParentFigure(int nlhs,
                                mxArray * plhs[],
                                int nrhs,
                                mxArray * prhs[]) {
    MW_BEGIN_MLX();
    {
        mwArray mprhs[1];
        mwArray mplhs[1];
        int i;
        mclCppUndefineArrays(1, mplhs);
        if (nlhs > 1) {
            error(
              mwVarargin(
                mwArray(
                  "Run-time Error: File: guidata/getParentFigure Line: 99 Co"
                  "lumn: 1 The function \"guidata/getParentFigure\" was call"
                  "ed with more than the declared number of outputs (1).")));
        }
        if (nrhs > 1) {
            error(
              mwVarargin(
                mwArray(
                  "Run-time Error: File: guidata/getParentFigure Line: 99 Co"
                  "lumn: 1 The function \"guidata/getParentFigure\" was call"
                  "ed with more than the declared number of inputs (1).")));
        }
        for (i = 0; i < 1 && i < nrhs; ++i) {
            mprhs[i] = mwArray(prhs[i], 0);
        }
        for (; i < 1; ++i) {
            mprhs[i].MakeDIN();
        }
        mplhs[0] = Mguidata_getParentFigure(nlhs, mprhs[0]);
        plhs[0] = mplhs[0].FreezeData();
    }
    MW_END_MLX();
}

//
// The function "Mguidata" is the implementation version of the "guidata"
// M-function from file "e:\matlab6.5\toolbox\matlab\uitools\guidata.m" (lines
// 1-99). It contains the actual compiled code for that M-function. It is a
// static function and must only be called from one of the interface functions,
// appearing below.
//

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆精品久久久久蜜臀| 免费在线观看一区二区三区| 亚洲国产成人高清精品| 韩国中文字幕2020精品| 欧美中文字幕一区| 国产精品沙发午睡系列990531| 无吗不卡中文字幕| 在线看国产一区二区| 国产精品视频麻豆| 国产成人在线免费观看| 日韩一区二区免费在线电影| 一区二区三区四区av| av中文字幕亚洲| 国产精品天天看| 国产一区二区电影| ww亚洲ww在线观看国产| 日韩国产在线一| 欧美日韩久久久久久| 亚洲永久精品国产| 色综合天天综合| 亚洲欧美成人一区二区三区| aaa欧美日韩| 中文字幕中文在线不卡住| 国产成人精品一区二区三区四区 | 国产成人av电影在线播放| 欧美一区二区三区男人的天堂| 亚洲一区影音先锋| 欧洲人成人精品| 亚洲一区二区视频在线观看| 一本久久a久久免费精品不卡| 国产精品午夜电影| gogogo免费视频观看亚洲一| 国产精品美女一区二区三区| 成人av在线播放网站| 亚洲国产高清在线| 99国产精品久久久| 一区二区欧美精品| 欧美视频中文一区二区三区在线观看| 一区二区三区视频在线看| 欧美色偷偷大香| 日韩电影一区二区三区四区| 欧美一区二区三区喷汁尤物| 久久精品国产精品亚洲精品| 久久久不卡网国产精品一区| 从欧美一区二区三区| 亚洲视频免费看| 欧美日韩久久久| 久久国产精品无码网站| 久久久99精品久久| 日本精品一区二区三区四区的功能| 综合久久久久久| 欧美放荡的少妇| 国产成人在线免费观看| 亚洲另类一区二区| 日韩一区二区影院| 成人av影视在线观看| 亚洲一区av在线| 2023国产精华国产精品| 91在线观看成人| 全国精品久久少妇| 国产精品久久三| 91.麻豆视频| 成人深夜在线观看| 午夜精品福利在线| 亚洲国产成人自拍| 欧美精品乱码久久久久久| 国产成人免费视频网站| 夜夜嗨av一区二区三区中文字幕| 日韩欧美一区二区三区在线| 不卡一区二区中文字幕| 蜜桃久久精品一区二区| 中文字幕一区二区三| 精品少妇一区二区三区日产乱码| 99精品国产一区二区三区不卡 | 亚洲男女一区二区三区| 日韩免费成人网| 欧洲国内综合视频| 丁香啪啪综合成人亚洲小说| 亚洲一区二区三区爽爽爽爽爽| 久久久久高清精品| 欧美日韩性生活| av成人免费在线观看| 精品一区二区三区免费观看| 亚洲国产精品一区二区久久恐怖片 | 亚洲资源中文字幕| 国产欧美一区二区精品性色 | 五月天精品一区二区三区| 中日韩免费视频中文字幕| 欧美精品在欧美一区二区少妇| 东方aⅴ免费观看久久av| 免费人成在线不卡| www成人在线观看| 日韩午夜激情视频| 美日韩黄色大片| 亚洲国产一二三| 亚洲视频一区二区在线| 26uuu国产日韩综合| 91精品国产综合久久福利| 欧洲另类一二三四区| av资源网一区| 成人av小说网| av中文一区二区三区| 成人性生交大片免费看视频在线 | 中文文精品字幕一区二区| 日韩三级视频在线看| 欧美日韩大陆在线| 欧美日韩一区二区三区不卡| 欧美性大战久久久久久久蜜臀| 91丨porny丨蝌蚪视频| aa级大片欧美| 色偷偷久久一区二区三区| 色婷婷激情综合| 欧美在线你懂的| 欧美剧情电影在线观看完整版免费励志电影| 99久久精品国产毛片| 一本一道久久a久久精品综合蜜臀| www.色综合.com| 色综合久久综合网欧美综合网| 99国产精品久| 欧美亚洲自拍偷拍| 欧美一区二区在线播放| 欧美一区二区高清| 久久综合色播五月| 中文av一区二区| 亚洲另类色综合网站| 亚洲成在人线免费| 久久激情五月激情| 国产精品888| 99riav一区二区三区| 色综合一区二区三区| 欧美日韩国产小视频在线观看| 在线一区二区三区做爰视频网站| 欧美日韩午夜在线| 久久综合久久综合久久综合| 久久精品视频免费| 樱花草国产18久久久久| 秋霞午夜鲁丝一区二区老狼| 国内久久精品视频| bt欧美亚洲午夜电影天堂| 欧美色区777第一页| 日韩一区二区三免费高清| 欧美高清在线一区| 亚洲国产婷婷综合在线精品| 黄网站免费久久| 99re66热这里只有精品3直播| 欧美日韩精品三区| 久久久久88色偷偷免费| 亚洲人成在线观看一区二区| 奇米精品一区二区三区在线观看一| 国产中文字幕精品| 欧洲精品视频在线观看| 久久看人人爽人人| 亚洲图片欧美一区| 懂色av噜噜一区二区三区av| 欧美人与禽zozo性伦| 国产精品美女久久久久aⅴ国产馆| 亚洲中国最大av网站| 国产成人夜色高潮福利影视| 欧美午夜精品一区| 亚洲国产精品v| 美女精品一区二区| 欧美最新大片在线看 | 成人一区在线看| 欧美日韩五月天| 中文字幕亚洲成人| 国产一区二区在线观看免费| 欧美视频自拍偷拍| 自拍偷拍亚洲综合| 国产成人av一区二区三区在线观看| 欧美影片第一页| 国产精品久线在线观看| 久久黄色级2电影| 欧美理论片在线| 亚洲精选视频免费看| 国产69精品久久久久777| 欧美一级xxx| 午夜精品久久久久久久99樱桃| caoporm超碰国产精品| 久久精品一区二区三区不卡牛牛| 天堂午夜影视日韩欧美一区二区| 91香蕉视频污在线| 亚洲国产精品成人综合| 国产精品影视在线观看| 精品裸体舞一区二区三区| 日本不卡一区二区| 欧美高清视频在线高清观看mv色露露十八 | 国产91精品一区二区| 欧美mv日韩mv亚洲| 美女一区二区三区| 日韩一级片在线播放| 秋霞电影一区二区| 欧美丰满美乳xxx高潮www| 亚洲aⅴ怡春院| 91麻豆精品国产91久久久更新时间| 夜夜操天天操亚洲| 欧美色图免费看| 天天av天天翘天天综合网| 欧美日韩国产精选| 日韩国产在线观看| 精品久久免费看|