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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? circle_f_mex.c

?? 這本書是matlab經(jīng)典書籍
?? C
字號:
/*
 * MATLAB Compiler: 2.2
 * Date: Tue Jun 25 12:26:00 2002
 * 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" "-x" "-W" "mex" "-L" "C"
 * "-t" "-T" "link:mexlibrary" "libmatlbmx.mlib" "circle_f" 
 */

#ifndef MLF_V2
#define MLF_V2 1
#endif

#include "libmatlb.h"
#include "circle_f.h"
#include "axis.h"
#include "clf.h"

static mexFunctionTableEntry function_table[1]
  = { { "circle_f", mlxCircle_f, 1, 0, &_local_function_table_circle_f } };

static _mexInitTermTableEntry init_term_table[1]
  = { { InitializeModule_circle_f, TerminateModule_circle_f } };

static _mex_information _mex_info
  = { 1, 1, function_table, 0, NULL, 0, NULL, 1, init_term_table };

/*
 * The function "Mclf" is the MATLAB callback version of the "clf" function
 * from file "d:\MATLAB6p1\toolbox\matlab\graphics\clf.m". It performs a
 * callback to MATLAB to run the "clf" function, and passes any resulting
 * output arguments back to its calling function.
 */
static mxArray * Mclf(int nargout_, mxArray * varargin) {
    mxArray * ret_fig = mclGetUninitializedArray();
    mclFevalCallMATLAB(
      mclNVarargout(nargout_, 0, &ret_fig, NULL),
      "clf",
      mlfIndexRef(varargin, "{?}", mlfCreateColonIndex()), NULL);
    return ret_fig;
}

/*
 * The function "Maxis" is the MATLAB callback version of the "axis" function
 * from file "d:\MATLAB6p1\toolbox\matlab\graph2d\axis.m". It performs a
 * callback to MATLAB to run the "axis" function, and passes any resulting
 * output arguments back to its calling function.
 */
static mxArray * Maxis(mxArray * * ans2,
                       mxArray * * ans3,
                       int nargout_,
                       mxArray * varargin) {
    mxArray * ans1 = mclGetUninitializedArray();
    mclFevalCallMATLAB(
      mclNVarargout(nargout_, 0, &ans1, ans2, ans3, NULL),
      "axis",
      mlfIndexRef(varargin, "{?}", mlfCreateColonIndex()), NULL);
    return ans1;
}

/*
 * The function "mexLibrary" is a Compiler-generated mex wrapper, suitable for
 * building a MEX-function. It initializes any persistent variables as well as
 * a function table for use by the feval function. It then calls the function
 * "mlxCircle_f". Finally, it clears the feval table and exits.
 */
mex_information mexLibrary(void) {
    mclMexLibraryInit();
    return &_mex_info;
}

/*
 * The function "mlfNClf" contains the nargout interface for the "clf"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\graphics\clf.m" (lines
 * 0-0). 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.
 */
mxArray * mlfNClf(int nargout, ...) {
    mxArray * varargin = NULL;
    mxArray * ret_fig = mclGetUninitializedArray();
    mlfVarargin(&varargin, nargout, 0);
    mlfEnterNewContext(0, -1, varargin);
    ret_fig = Mclf(nargout, varargin);
    mlfRestorePreviousContext(0, 0);
    mxDestroyArray(varargin);
    return mlfReturnValue(ret_fig);
}

/*
 * The function "mlfClf" contains the normal interface for the "clf" M-function
 * from file "d:\MATLAB6p1\toolbox\matlab\graphics\clf.m" (lines 0-0). This
 * function processes any input arguments and passes them to the implementation
 * version of the function, appearing above.
 */
mxArray * mlfClf(mxArray * synthetic_varargin_argument, ...) {
    mxArray * varargin = NULL;
    int nargout = 1;
    mxArray * ret_fig = mclGetUninitializedArray();
    mlfVarargin(&varargin, synthetic_varargin_argument, 1);
    mlfEnterNewContext(0, -1, varargin);
    ret_fig = Mclf(nargout, varargin);
    mlfRestorePreviousContext(0, 0);
    mxDestroyArray(varargin);
    return mlfReturnValue(ret_fig);
}

/*
 * The function "mlfVClf" contains the void interface for the "clf" M-function
 * from file "d:\MATLAB6p1\toolbox\matlab\graphics\clf.m" (lines 0-0). 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 mlfVClf(mxArray * synthetic_varargin_argument, ...) {
    mxArray * varargin = NULL;
    mxArray * ret_fig = NULL;
    mlfVarargin(&varargin, synthetic_varargin_argument, 1);
    mlfEnterNewContext(0, -1, varargin);
    ret_fig = Mclf(0, synthetic_varargin_argument);
    mlfRestorePreviousContext(0, 0);
    mxDestroyArray(varargin);
}

/*
 * The function "mlxClf" contains the feval interface for the "clf" M-function
 * from file "d:\MATLAB6p1\toolbox\matlab\graphics\clf.m" (lines 0-0). The
 * feval function calls the implementation version of clf through this
 * function. This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
void mlxClf(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
    mxArray * mprhs[1];
    mxArray * mplhs[1];
    int i;
    if (nlhs > 1) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: clf Line: 1 Column: 1 The function \"clf\" "
            "was called with more than the declared number of outputs (1)."));
    }
    for (i = 0; i < 1; ++i) {
        mplhs[i] = mclGetUninitializedArray();
    }
    mlfEnterNewContext(0, 0);
    mprhs[0] = NULL;
    mlfAssign(&mprhs[0], mclCreateVararginCell(nrhs, prhs));
    mplhs[0] = Mclf(nlhs, mprhs[0]);
    mlfRestorePreviousContext(0, 0);
    plhs[0] = mplhs[0];
    mxDestroyArray(mprhs[0]);
}

/*
 * The function "mlfAxis" contains the normal interface for the "axis"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\graph2d\axis.m" (lines
 * 0-0). This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
mxArray * mlfAxis(mxArray * * ans2, mxArray * * ans3, ...) {
    mxArray * varargin = NULL;
    int nargout = 1;
    mxArray * ans1 = mclGetUninitializedArray();
    mxArray * ans2__ = mclGetUninitializedArray();
    mxArray * ans3__ = mclGetUninitializedArray();
    mlfVarargin(&varargin, ans3, 0);
    mlfEnterNewContext(2, -1, ans2, ans3, varargin);
    if (ans2 != NULL) {
        ++nargout;
    }
    if (ans3 != NULL) {
        ++nargout;
    }
    ans1 = Maxis(&ans2__, &ans3__, nargout, varargin);
    mlfRestorePreviousContext(2, 0, ans2, ans3);
    mxDestroyArray(varargin);
    if (ans2 != NULL) {
        mclCopyOutputArg(ans2, ans2__);
    } else {
        mxDestroyArray(ans2__);
    }
    if (ans3 != NULL) {
        mclCopyOutputArg(ans3, ans3__);
    } else {
        mxDestroyArray(ans3__);
    }
    return mlfReturnValue(ans1);
}

/*
 * The function "mlxAxis" contains the feval interface for the "axis"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\graph2d\axis.m" (lines
 * 0-0). The feval function calls the implementation version of axis through
 * this function. This function processes any input arguments and passes them
 * to the implementation version of the function, appearing above.
 */
void mlxAxis(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
    mxArray * mprhs[1];
    mxArray * mplhs[3];
    int i;
    if (nlhs > 3) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: axis Line: 1 Column: 1 The function \"axis\""
            " was called with more than the declared number of outputs (3)."));
    }
    for (i = 0; i < 3; ++i) {
        mplhs[i] = mclGetUninitializedArray();
    }
    mlfEnterNewContext(0, 0);
    mprhs[0] = NULL;
    mlfAssign(&mprhs[0], mclCreateVararginCell(nrhs, prhs));
    mplhs[0] = Maxis(&mplhs[1], &mplhs[2], nlhs, mprhs[0]);
    mlfRestorePreviousContext(0, 0);
    plhs[0] = mplhs[0];
    for (i = 1; i < 3 && i < nlhs; ++i) {
        plhs[i] = mplhs[i];
    }
    for (; i < 3; ++i) {
        mxDestroyArray(mplhs[i]);
    }
    mxDestroyArray(mprhs[0]);
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区二区中文字幕| 亚洲精品成人在线| 亚洲精品国产a久久久久久 | 欧美一区二区三区视频在线| 国产清纯白嫩初高生在线观看91| 亚洲综合在线视频| 国产成都精品91一区二区三| 欧美日韩国产在线观看| 综合久久国产九一剧情麻豆| 蜜乳av一区二区三区| 欧美在线一二三| 国产日韩在线不卡| 国产一区二区三区| 777a∨成人精品桃花网| 一区二区三区四区亚洲| 成人激情av网| 欧美激情一区二区三区蜜桃视频 | 成人精品一区二区三区四区| 欧美一区二区三区在线视频| 一区二区欧美在线观看| 不卡区在线中文字幕| 久久综合久久久久88| 天天影视色香欲综合网老头| 91国偷自产一区二区开放时间| 久久综合一区二区| 精品一区二区三区免费播放| 欧美电影一区二区三区| 视频在线观看国产精品| 欧美日韩精品一区二区天天拍小说 | 亚洲欧美日韩中文播放| 99久久亚洲一区二区三区青草| 久久久91精品国产一区二区精品 | 成人av资源在线观看| 亚洲国产成人一区二区三区| 从欧美一区二区三区| 国产欧美1区2区3区| 春色校园综合激情亚洲| 日韩毛片高清在线播放| 91亚洲国产成人精品一区二三| 一色屋精品亚洲香蕉网站| 99久久精品国产导航| 亚洲免费av在线| 欧美日韩国产高清一区二区三区| 午夜精品久久久久久久| 欧美日韩免费不卡视频一区二区三区| 亚洲一区二区三区自拍| 91.麻豆视频| 精品一区二区三区日韩| 国产欧美精品区一区二区三区 | 成人av网址在线| 亚洲男人天堂一区| 91国偷自产一区二区开放时间 | 国产精品久久久久精k8 | 亚洲午夜久久久久久久久电影网| 精品视频一区二区不卡| 青青草精品视频| 久久精品亚洲精品国产欧美 | 一区二区三区四区乱视频| 欧美日韩在线免费视频| 看电影不卡的网站| 国产精品免费丝袜| 在线视频欧美区| 蓝色福利精品导航| 亚洲欧美怡红院| 717成人午夜免费福利电影| 国模娜娜一区二区三区| 亚洲区小说区图片区qvod| 欧美日韩视频不卡| 国产激情一区二区三区四区| 亚洲欧美日韩国产成人精品影院 | 一区二区久久久| 欧美哺乳videos| 99精品国产热久久91蜜凸| 日本特黄久久久高潮| 综合欧美一区二区三区| 日韩一级二级三级| 色综合色综合色综合| 狠狠色丁香九九婷婷综合五月| 亚洲欧美在线另类| 欧美成人一区二区三区片免费| 成人福利视频网站| 裸体在线国模精品偷拍| 亚洲一区av在线| 国产精品高潮久久久久无| 日韩一区二区三区四区五区六区| 91在线你懂得| 国产一区二区视频在线| 丝袜美腿亚洲一区| 亚洲精品国产高清久久伦理二区| 精品国产91九色蝌蚪| 欧美亚洲免费在线一区| 风间由美一区二区av101 | 亚洲免费观看高清完整 | 精品国产电影一区二区| 精品视频1区2区| 色美美综合视频| 不卡视频在线看| 国产传媒日韩欧美成人| 国产综合色精品一区二区三区| 午夜私人影院久久久久| 一区二区三区四区蜜桃| 中文字幕第一区| 欧美精品一区视频| 欧美本精品男人aⅴ天堂| 91精品国产日韩91久久久久久| 91国在线观看| 在线亚洲一区二区| 在线视频你懂得一区二区三区| 91免费看视频| 色综合中文字幕国产| 国产精品中文字幕日韩精品| 精品一区二区三区视频| 国产综合久久久久久久久久久久| 日韩高清欧美激情| 日韩电影在线一区| 麻豆成人91精品二区三区| 视频在线观看一区二区三区| 天天色 色综合| 日本不卡的三区四区五区| 视频一区在线播放| 久久国产精品一区二区| 激情丁香综合五月| 国产激情视频一区二区在线观看| 国产成人精品影视| 成人高清在线视频| 91亚洲国产成人精品一区二区三| 91视频在线看| 欧美亚洲日本一区| 欧美一卡2卡三卡4卡5免费| 欧美videos中文字幕| 国产亚洲欧洲一区高清在线观看| 中文在线一区二区| 亚洲精品视频在线| 日韩av在线播放中文字幕| 激情五月激情综合网| 成人免费视频app| 在线一区二区三区四区| 91精品一区二区三区在线观看| 日韩久久精品一区| 中文字幕欧美激情| 亚洲大尺度视频在线观看| 久久99精品国产.久久久久久| 国产一区高清在线| 一本到不卡精品视频在线观看| 欧美色图天堂网| 久久久不卡网国产精品一区| 1024国产精品| 日本网站在线观看一区二区三区| 国产精品一区二区久久不卡| 色婷婷av久久久久久久| 欧美大白屁股肥臀xxxxxx| 亚洲婷婷综合久久一本伊一区| 日本亚洲视频在线| av动漫一区二区| 日韩一区二区三区av| 亚洲欧美国产高清| 美腿丝袜亚洲三区| 日本韩国欧美一区二区三区| 精品毛片乱码1区2区3区| 亚洲精品免费电影| 国产尤物一区二区在线| 欧美日韩国产天堂| 国产精品第13页| 麻豆一区二区99久久久久| 91福利精品视频| 国产欧美1区2区3区| 久久99精品久久久久久国产越南 | 亚洲一区二区三区在线播放| 国产精品一区二区91| 日韩一区二区电影| 亚洲综合一区二区| av资源网一区| 久久久久久久综合狠狠综合| 日韩不卡一区二区三区| 在线亚洲一区二区| 亚洲免费视频成人| 成人在线综合网| 精品日本一线二线三线不卡| 午夜电影网一区| 91成人在线精品| 亚洲伦理在线精品| 成人中文字幕电影| 国产亚洲欧美一区在线观看| 美腿丝袜一区二区三区| 在线成人小视频| 亚洲国产成人高清精品| 色婷婷av一区| 亚洲精品福利视频网站| 97久久精品人人做人人爽50路| 久久久久久久久免费| 精品综合久久久久久8888| 91精品国产91久久久久久最新毛片 | 亚洲成人av一区二区三区| 99久久免费精品高清特色大片| 国产精品色哟哟| 国产高清不卡二三区| 国产日韩欧美综合在线| 国产成人小视频| 国产拍欧美日韩视频二区| 国产精品一色哟哟哟|