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

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

?? meshgrid.c

?? 這本書是matlab經典書籍
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
 * MATLAB Compiler: 2.2
 * Date: Tue Jun 25 15:00:23 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" "-t" "-W" "lib:Templib"
 * "-T" "link:exe" "-h" "fileinc.c" "mrank" 
 */
#include "meshgrid.h"
#include "libmatlbm.h"

static mxChar _array1_[134] = { 'R', 'u', 'n', '-', 't', 'i', 'm', 'e', ' ',
                                'E', 'r', 'r', 'o', 'r', ':', ' ', 'F', 'i',
                                'l', 'e', ':', ' ', 'm', 'e', 's', 'h', 'g',
                                'r', 'i', 'd', ' ', 'L', 'i', 'n', 'e', ':',
                                ' ', '1', ' ', 'C', 'o', 'l', 'u', 'm', 'n',
                                ':', ' ', '1', ' ', 'T', 'h', 'e', ' ', 'f',
                                'u', 'n', 'c', 't', 'i', 'o', 'n', ' ', '"',
                                'm', 'e', 's', 'h', 'g', 'r', 'i', 'd', '"',
                                ' ', 'w', 'a', 's', ' ', 'c', 'a', 'l', 'l',
                                'e', 'd', ' ', 'w', 'i', 't', 'h', ' ', 'm',
                                'o', 'r', 'e', ' ', 't', 'h', 'a', 'n', ' ',
                                't', 'h', 'e', ' ', 'd', 'e', 'c', 'l', 'a',
                                'r', 'e', 'd', ' ', 'n', 'u', 'm', 'b', 'e',
                                'r', ' ', 'o', 'f', ' ', 'o', 'u', 't', 'p',
                                'u', 't', 's', ' ', '(', '3', ')', '.' };
static mxArray * _mxarray0_;

static mxChar _array3_[133] = { 'R', 'u', 'n', '-', 't', 'i', 'm', 'e', ' ',
                                'E', 'r', 'r', 'o', 'r', ':', ' ', 'F', 'i',
                                'l', 'e', ':', ' ', 'm', 'e', 's', 'h', 'g',
                                'r', 'i', 'd', ' ', 'L', 'i', 'n', 'e', ':',
                                ' ', '1', ' ', 'C', 'o', 'l', 'u', 'm', 'n',
                                ':', ' ', '1', ' ', 'T', 'h', 'e', ' ', 'f',
                                'u', 'n', 'c', 't', 'i', 'o', 'n', ' ', '"',
                                'm', 'e', 's', 'h', 'g', 'r', 'i', 'd', '"',
                                ' ', 'w', 'a', 's', ' ', 'c', 'a', 'l', 'l',
                                'e', 'd', ' ', 'w', 'i', 't', 'h', ' ', 'm',
                                'o', 'r', 'e', ' ', 't', 'h', 'a', 'n', ' ',
                                't', 'h', 'e', ' ', 'd', 'e', 'c', 'l', 'a',
                                'r', 'e', 'd', ' ', 'n', 'u', 'm', 'b', 'e',
                                'r', ' ', 'o', 'f', ' ', 'i', 'n', 'p', 'u',
                                't', 's', ' ', '(', '3', ')', '.' };
static mxArray * _mxarray2_;
static mxArray * _mxarray4_;
static mxArray * _mxarray5_;

static mxChar _array7_[27] = { 'N', 'o', 't', ' ', 'e', 'n', 'o', 'u', 'g',
                               'h', ' ', 'i', 'n', 'p', 'u', 't', ' ', 'a',
                               'r', 'g', 'u', 'm', 'e', 'n', 't', 's', '.' };
static mxArray * _mxarray6_;

void InitializeModule_meshgrid(void) {
    _mxarray0_ = mclInitializeString(134, _array1_);
    _mxarray2_ = mclInitializeString(133, _array3_);
    _mxarray4_ = mclInitializeDoubleVector(0, 0, (double *)NULL);
    _mxarray5_ = mclInitializeDouble(1.0);
    _mxarray6_ = mclInitializeString(27, _array7_);
}

void TerminateModule_meshgrid(void) {
    mxDestroyArray(_mxarray6_);
    mxDestroyArray(_mxarray5_);
    mxDestroyArray(_mxarray4_);
    mxDestroyArray(_mxarray2_);
    mxDestroyArray(_mxarray0_);
}

static mxArray * Mmeshgrid(mxArray * * yy,
                           mxArray * * zz,
                           int nargout_,
                           mxArray * x,
                           mxArray * y,
                           mxArray * z);

_mexLocalFunctionTable _local_function_table_meshgrid
  = { 0, (mexFunctionTableEntry *)NULL };

/*
 * The function "mlfNMeshgrid" contains the nargout interface for the
 * "meshgrid" M-function from file
 * "d:\MATLAB6p1\toolbox\matlab\elmat\meshgrid.m" (lines 1-60). 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 * mlfNMeshgrid(int nargout,
                       mxArray * * yy,
                       mxArray * * zz,
                       mxArray * x,
                       mxArray * y,
                       mxArray * z) {
    mxArray * xx = mclGetUninitializedArray();
    mxArray * yy__ = mclGetUninitializedArray();
    mxArray * zz__ = mclGetUninitializedArray();
    mlfEnterNewContext(2, 3, yy, zz, x, y, z);
    xx = Mmeshgrid(&yy__, &zz__, nargout, x, y, z);
    mlfRestorePreviousContext(2, 3, yy, zz, x, y, z);
    if (yy != NULL) {
        mclCopyOutputArg(yy, yy__);
    } else {
        mxDestroyArray(yy__);
    }
    if (zz != NULL) {
        mclCopyOutputArg(zz, zz__);
    } else {
        mxDestroyArray(zz__);
    }
    return mlfReturnValue(xx);
}

/*
 * The function "mlfMeshgrid" contains the normal interface for the "meshgrid"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\elmat\meshgrid.m" (lines
 * 1-60). This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
mxArray * mlfMeshgrid(mxArray * * yy,
                      mxArray * * zz,
                      mxArray * x,
                      mxArray * y,
                      mxArray * z) {
    int nargout = 1;
    mxArray * xx = mclGetUninitializedArray();
    mxArray * yy__ = mclGetUninitializedArray();
    mxArray * zz__ = mclGetUninitializedArray();
    mlfEnterNewContext(2, 3, yy, zz, x, y, z);
    if (yy != NULL) {
        ++nargout;
    }
    if (zz != NULL) {
        ++nargout;
    }
    xx = Mmeshgrid(&yy__, &zz__, nargout, x, y, z);
    mlfRestorePreviousContext(2, 3, yy, zz, x, y, z);
    if (yy != NULL) {
        mclCopyOutputArg(yy, yy__);
    } else {
        mxDestroyArray(yy__);
    }
    if (zz != NULL) {
        mclCopyOutputArg(zz, zz__);
    } else {
        mxDestroyArray(zz__);
    }
    return mlfReturnValue(xx);
}

/*
 * The function "mlfVMeshgrid" contains the void interface for the "meshgrid"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\elmat\meshgrid.m" (lines
 * 1-60). 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 mlfVMeshgrid(mxArray * x, mxArray * y, mxArray * z) {
    mxArray * xx = NULL;
    mxArray * yy = NULL;
    mxArray * zz = NULL;
    mlfEnterNewContext(0, 3, x, y, z);
    xx = Mmeshgrid(&yy, &zz, 0, x, y, z);
    mlfRestorePreviousContext(0, 3, x, y, z);
    mxDestroyArray(xx);
    mxDestroyArray(yy);
    mxDestroyArray(zz);
}

/*
 * The function "mlxMeshgrid" contains the feval interface for the "meshgrid"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\elmat\meshgrid.m" (lines
 * 1-60). The feval function calls the implementation version of meshgrid
 * through this function. This function processes any input arguments and
 * passes them to the implementation version of the function, appearing above.
 */
void mlxMeshgrid(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
    mxArray * mprhs[3];
    mxArray * mplhs[3];
    int i;
    if (nlhs > 3) {
        mlfError(_mxarray0_);
    }
    if (nrhs > 3) {
        mlfError(_mxarray2_);
    }
    for (i = 0; i < 3; ++i) {
        mplhs[i] = mclGetUninitializedArray();
    }
    for (i = 0; i < 3 && i < nrhs; ++i) {
        mprhs[i] = prhs[i];
    }
    for (; i < 3; ++i) {
        mprhs[i] = NULL;
    }
    mlfEnterNewContext(0, 3, mprhs[0], mprhs[1], mprhs[2]);
    mplhs[0]
      = Mmeshgrid(&mplhs[1], &mplhs[2], nlhs, mprhs[0], mprhs[1], mprhs[2]);
    mlfRestorePreviousContext(0, 3, mprhs[0], mprhs[1], mprhs[2]);
    plhs[0] = mplhs[0];
    for (i = 1; i < 3 && i < nlhs; ++i) {
        plhs[i] = mplhs[i];
    }
    for (; i < 3; ++i) {
        mxDestroyArray(mplhs[i]);
    }
}

/*
 * The function "Mmeshgrid" is the implementation version of the "meshgrid"
 * M-function from file "d:\MATLAB6p1\toolbox\matlab\elmat\meshgrid.m" (lines
 * 1-60). 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.
 */
/*
 * function [xx,yy,zz] = meshgrid(x,y,z)
 */
static mxArray * Mmeshgrid(mxArray * * yy,
                           mxArray * * zz,
                           int nargout_,
                           mxArray * x,
                           mxArray * y,
                           mxArray * z) {
    mexLocalFunctionTable save_local_function_table_
      = mclSetCurrentLocalFunctionTable(&_local_function_table_meshgrid);
    int nargin_ = mclNargin(3, x, y, z, NULL);
    mxArray * xx = mclGetUninitializedArray();
    mxArray * nz = mclGetUninitializedArray();
    mxArray * ans = mclGetUninitializedArray();
    mxArray * ny = mclGetUninitializedArray();
    mxArray * nx = mclGetUninitializedArray();
    mclCopyArray(&x);
    mclCopyArray(&y);
    mclCopyArray(&z);
    /*
     * %MESHGRID   X and Y arrays for 3-D plots.
     * %   [X,Y] = MESHGRID(x,y) transforms the domain specified by vectors
     * %   x and y into arrays X and Y that can be used for the evaluation
     * %   of functions of two variables and 3-D surface plots.
     * %   The rows of the output array X are copies of the vector x and
     * %   the columns of the output array Y are copies of the vector y.
     * %
     * %   [X,Y] = MESHGRID(x) is an abbreviation for [X,Y] = MESHGRID(x,x).
     * %   [X,Y,Z] = MESHGRID(x,y,z) produces 3-D arrays that can be used to
     * %   evaluate functions of three variables and 3-D volumetric plots.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲色图欧美激情| 亚洲精品一区二区精华| 久久女同精品一区二区| 亚洲一区在线观看视频| 成人一区二区三区在线观看| 日韩视频中午一区| 亚洲r级在线视频| 99re这里只有精品6| 国产视频在线观看一区二区三区 | 欧美日韩一级二级三级| 国产欧美日韩在线| 麻豆成人综合网| 色婷婷综合久久久中文一区二区 | 欧美日韩视频在线观看一区二区三区 | 日本二三区不卡| 亚洲国产精品二十页| 麻豆一区二区三区| 欧美丰满嫩嫩电影| 一级特黄大欧美久久久| 99久久精品免费看国产免费软件| 26uuu国产日韩综合| 日韩电影在线一区| 欧美精品乱人伦久久久久久| 亚洲欧美另类在线| 国产伦精品一区二区三区视频青涩| 欧美三级日本三级少妇99| 国产精品水嫩水嫩| 看电视剧不卡顿的网站| 成人免费视频播放| 制服丝袜成人动漫| 亚洲综合成人在线视频| 成人小视频免费在线观看| 日韩欧美一区二区在线视频| 一区二区三区精品| 波多野结衣中文一区| 久久久久高清精品| 久久精品国产免费| 7799精品视频| 午夜不卡在线视频| 色婷婷国产精品| 自拍偷拍欧美激情| 9i看片成人免费高清| 亚洲欧洲制服丝袜| 欧洲精品中文字幕| 亚洲高清免费视频| 在线播放欧美女士性生活| 成人少妇影院yyyy| 免费在线观看一区二区三区| 日韩一区二区三区免费看| 日韩成人免费看| 精品国产区一区| 国产精品66部| 国产精品久久久久久久岛一牛影视 | 另类的小说在线视频另类成人小视频在线| 3d动漫精品啪啪| 精久久久久久久久久久| 久久久精品蜜桃| 成人爱爱电影网址| 一区二区激情视频| 欧美另类变人与禽xxxxx| 日韩精品久久久久久| 欧美成人精精品一区二区频| 国产麻豆精品久久一二三| 国产精品无遮挡| 日本国产一区二区| 石原莉奈在线亚洲二区| 亚洲精品一区二区在线观看| 国产酒店精品激情| 亚洲精品中文字幕乱码三区| 欧美日韩视频在线一区二区| 久久不见久久见免费视频1| 久久久777精品电影网影网| 91色综合久久久久婷婷| 亚洲va天堂va国产va久| 欧美电影精品一区二区| 成人av网址在线| 亚洲国产欧美另类丝袜| 日韩欧美一二区| 99re视频精品| 蜜桃精品视频在线| 国产精品麻豆欧美日韩ww| 精品视频一区二区不卡| 国产在线国偷精品免费看| 亚洲少妇30p| 欧美一区二区三区婷婷月色| 日本欧美一区二区三区| 欧美日韩亚洲综合在线| 国产在线精品一区二区三区不卡| 国产亚洲精品超碰| 欧美日韩一区国产| 国产美女一区二区三区| 一区二区三区中文字幕在线观看| 欧美va亚洲va在线观看蝴蝶网| 北岛玲一区二区三区四区| 日韩综合小视频| 国产精品护士白丝一区av| 91精选在线观看| 波多野结衣中文字幕一区二区三区 | 久久综合色8888| 日本高清不卡aⅴ免费网站| 国产在线视频精品一区| 亚洲自拍偷拍欧美| 国产亚洲精品7777| 在线不卡中文字幕| 91同城在线观看| 激情久久五月天| 午夜在线电影亚洲一区| 国产精品五月天| 精品剧情v国产在线观看在线| 在线观看免费亚洲| 国产成人av一区二区| 日本最新不卡在线| 一区二区三区在线看| 日本一区二区视频在线观看| 欧美一区二区在线免费观看| 91久久一区二区| 成人综合婷婷国产精品久久免费| 日韩成人av影视| 亚洲精品国久久99热| 中文字幕高清一区| 精品国产亚洲一区二区三区在线观看| 91国内精品野花午夜精品| 成人午夜私人影院| 国产一区二区三区在线观看免费视频 | 精品少妇一区二区三区视频免付费 | 久久精品国内一区二区三区| 亚洲亚洲精品在线观看| 中文字幕在线不卡| 色婷婷久久99综合精品jk白丝| 亚洲精品乱码久久久久久| 国产三级欧美三级日产三级99| 欧美老年两性高潮| 在线视频一区二区三区| 91在线视频免费观看| 成人午夜视频在线观看| 国产精品资源网站| 激情小说欧美图片| 久久99精品久久久久| 蜜桃av噜噜一区| 热久久久久久久| 秋霞影院一区二区| 五月激情综合色| 肉丝袜脚交视频一区二区| 亚洲18影院在线观看| 亚洲一级二级三级在线免费观看| 亚洲色图制服诱惑 | 欧美一级精品在线| 91精品国产乱码| 7777精品伊人久久久大香线蕉的| 欧美日韩在线播放| 欧美三级在线视频| 欧美猛男超大videosgay| 欧美另类一区二区三区| 欧美精品 国产精品| 在线91免费看| 日韩一级成人av| 精品福利一二区| 久久久久亚洲综合| 国产欧美日韩视频一区二区| 国产网站一区二区三区| 国产日韩欧美一区二区三区乱码 | 色综合久久久久综合体桃花网| 99视频超级精品| 91蝌蚪porny九色| 97久久超碰国产精品电影| 色婷婷久久久综合中文字幕| 在线观看国产一区二区| 欧美日韩成人在线一区| 日韩一级免费一区| 精品粉嫩超白一线天av| 国产日产精品1区| 亚洲欧洲另类国产综合| 一区二区久久久久| 天堂va蜜桃一区二区三区 | 亚洲日本韩国一区| 亚洲国产精品视频| 日韩精品免费专区| 国产剧情在线观看一区二区| 成人激情视频网站| 在线精品视频小说1| 91麻豆精品国产自产在线| 欧美电影免费观看完整版| 国产亚洲欧美日韩俺去了| 国产精品久久久久影院亚瑟| 亚洲另类在线一区| 天天色图综合网| 国产高清精品网站| 日本久久电影网| 91精品国产色综合久久不卡电影 | 亚洲啪啪综合av一区二区三区| 亚洲成人手机在线| 久久狠狠亚洲综合| 成人爱爱电影网址| 欧美日韩成人综合在线一区二区| 精品国产sm最大网站免费看| 国产精品入口麻豆九色| 亚洲妇熟xx妇色黄| 国产呦萝稀缺另类资源| 色哟哟欧美精品| 日韩精品专区在线影院重磅|