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

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

?? xlabel.c

?? 好東西
?? C
字號:
/*
 * MATLAB Compiler: 3.0
 * Date: Fri Mar 24 11:31:36 2006
 * 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" "-m" "-W" "main" "-L"
 * "C" "-t" "-T" "link:exe" "-h" "libmmfile.mlib"
 * "adptive_bitpow_allocate_systems" 
 */
#include "xlabel.h"
#include "mwservices.h"
#include "libmatlbm.h"
#include "libmmfile.h"

static mxChar _array1_[35] = { 'I', 'n', 'c', 'o', 'r', 'r', 'e', 'c', 't',
                               ' ', 'n', 'u', 'm', 'b', 'e', 'r', ' ', 'o',
                               'f', ' ', 'i', 'n', 'p', 'u', 't', ' ', 'a',
                               'r', 'g', 'u', 'm', 'e', 'n', 't', 's' };
static mxArray * _mxarray0_;

static mxChar _array3_[15] = { 'M', 'W', 'B', 'Y', 'P', 'A', 'S', 'S',
                               '_', 'x', 'l', 'a', 'b', 'e', 'l' };
static mxArray * _mxarray2_;

static mxChar _array5_[6] = { 'x', 'l', 'a', 'b', 'e', 'l' };
static mxArray * _mxarray4_;

static mxChar _array7_[9] = { 'F', 'o', 'n', 't', 'A', 'n', 'g', 'l', 'e' };
static mxArray * _mxarray6_;

static mxChar _array9_[8] = { 'F', 'o', 'n', 't', 'N', 'a', 'm', 'e' };
static mxArray * _mxarray8_;

static mxChar _array11_[8] = { 'F', 'o', 'n', 't', 'S', 'i', 'z', 'e' };
static mxArray * _mxarray10_;

static mxChar _array13_[10] = { 'F', 'o', 'n', 't', 'W',
                                'e', 'i', 'g', 'h', 't' };
static mxArray * _mxarray12_;

static mxChar _array15_[6] = { 's', 't', 'r', 'i', 'n', 'g' };
static mxArray * _mxarray14_;

void InitializeModule_xlabel(void) {
    _mxarray0_ = mclInitializeString(35, _array1_);
    _mxarray2_ = mclInitializeString(15, _array3_);
    _mxarray4_ = mclInitializeString(6, _array5_);
    _mxarray6_ = mclInitializeString(9, _array7_);
    _mxarray8_ = mclInitializeString(8, _array9_);
    _mxarray10_ = mclInitializeString(8, _array11_);
    _mxarray12_ = mclInitializeString(10, _array13_);
    _mxarray14_ = mclInitializeString(6, _array15_);
}

void TerminateModule_xlabel(void) {
    mxDestroyArray(_mxarray14_);
    mxDestroyArray(_mxarray12_);
    mxDestroyArray(_mxarray10_);
    mxDestroyArray(_mxarray8_);
    mxDestroyArray(_mxarray6_);
    mxDestroyArray(_mxarray4_);
    mxDestroyArray(_mxarray2_);
    mxDestroyArray(_mxarray0_);
}

static mxArray * Mxlabel(int nargout_, mxArray * string, mxArray * varargin);

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

/*
 * The function "mlfNXlabel" contains the nargout interface for the "xlabel"
 * M-function from file "c:\matlab6p5\toolbox\matlab\graph2d\xlabel.m" (lines
 * 1-41). 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 * mlfNXlabel(int nargout, mxArray * string, ...) {
    mxArray * varargin = NULL;
    mxArray * hh = NULL;
    mlfVarargin(&varargin, string, 0);
    mlfEnterNewContext(0, -2, string, varargin);
    hh = Mxlabel(nargout, string, varargin);
    mlfRestorePreviousContext(0, 1, string);
    mxDestroyArray(varargin);
    return mlfReturnValue(hh);
}

/*
 * The function "mlfXlabel" contains the normal interface for the "xlabel"
 * M-function from file "c:\matlab6p5\toolbox\matlab\graph2d\xlabel.m" (lines
 * 1-41). This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
mxArray * mlfXlabel(mxArray * string, ...) {
    mxArray * varargin = NULL;
    int nargout = 1;
    mxArray * hh = NULL;
    mlfVarargin(&varargin, string, 0);
    mlfEnterNewContext(0, -2, string, varargin);
    hh = Mxlabel(nargout, string, varargin);
    mlfRestorePreviousContext(0, 1, string);
    mxDestroyArray(varargin);
    return mlfReturnValue(hh);
}

/*
 * The function "mlfVXlabel" contains the void interface for the "xlabel"
 * M-function from file "c:\matlab6p5\toolbox\matlab\graph2d\xlabel.m" (lines
 * 1-41). 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 mlfVXlabel(mxArray * string, ...) {
    mxArray * varargin = NULL;
    mxArray * hh = NULL;
    mlfVarargin(&varargin, string, 0);
    mlfEnterNewContext(0, -2, string, varargin);
    hh = Mxlabel(0, string, varargin);
    mlfRestorePreviousContext(0, 1, string);
    mxDestroyArray(varargin);
}

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

/*
 * The function "Mxlabel" is the implementation version of the "xlabel"
 * M-function from file "c:\matlab6p5\toolbox\matlab\graph2d\xlabel.m" (lines
 * 1-41). 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 hh = xlabel(string,varargin)
 */
static mxArray * Mxlabel(int nargout_, mxArray * string, mxArray * varargin) {
    mexLocalFunctionTable save_local_function_table_
      = mclSetCurrentLocalFunctionTable(&_local_function_table_xlabel);
    int nargin_ = mclNargin(-2, string, varargin, NULL);
    mxArray * hh = NULL;
    mxArray * h = NULL;
    mxArray * ax = NULL;
    mxArray * ans = NULL;
    mclCopyArray(&string);
    mclCopyArray(&varargin);
    /*
     * %XLABEL X-axis label.
     * %   XLABEL('text') adds text beside the X-axis on the current axis.
     * %
     * %   XLABEL('text','Property1',PropertyValue1,'Property2',PropertyValue2,...)
     * %   sets the values of the specified properties of the xlabel.
     * %
     * %   H = XLABEL(...) returns the handle to the text object used as the label.
     * %
     * %   See also YLABEL, ZLABEL, TITLE, TEXT.
     * 
     * %   Copyright 1984-2002 The MathWorks, Inc. 
     * %   $Revision: 5.13 $  $Date: 2002/04/08 21:44:38 $
     * 
     * if nargin > 1 & (nargin-1)/2-fix((nargin-1)/2),
     */
    {
        mxArray * a_ = mclInitialize(mclBoolToArray(nargin_ > 1));
        if (mlfTobool(a_)
            && mlfTobool(
                 mclAnd(
                   a_,
                   mclMinus(
                     mlfScalar(
                       svDoubleScalarRdivide((double) (nargin_ - 1), 2.0)),
                     mlfFix(
                       mlfScalar(
                         svDoubleScalarRdivide(
                           (double) (nargin_ - 1), 2.0))))))) {
            mxDestroyArray(a_);
            /*
             * error('Incorrect number of input arguments')
             */
            mlfError(_mxarray0_, NULL);
        } else {
            mxDestroyArray(a_);
        }
    /*
     * end
     */
    }
    /*
     * 
     * ax = gca;
     */
    mlfAssign(&ax, mlfGca(NULL));
    /*
     * 
     * %---Check for bypass option
     * if isappdata(ax,'MWBYPASS_xlabel')
     */
    if (mlfTobool(mlfIsappdata(mclVv(ax, "ax"), _mxarray2_))) {
        /*
         * h = mwbypass(ax,'MWBYPASS_xlabel',string,varargin{:});
         */
        mlfAssign(
          &h,
          mlfNGraph2d_private_mwbypass(
            1,
            mclVv(ax, "ax"),
            _mxarray2_,
            mclVa(string, "string"),
            mlfIndexRef(
              mclVa(varargin, "varargin"), "{?}", mlfCreateColonIndex()),
            NULL));
    /*
     * 
     * %---Standard behavior
     * else
     */
    } else {
        /*
         * h = get(ax,'xlabel');
         */
        mlfAssign(&h, mlfNGet(1, mclVv(ax, "ax"), _mxarray4_, NULL));
        /*
         * 
         * %Over-ride text objects default font attributes with
         * %the Axes' default font attributes.
         * set(h, 'FontAngle',  get(ax, 'FontAngle'), ...
         */
        mclAssignAns(
          &ans,
          mlfNSet(
            0,
            mclVv(h, "h"),
            _mxarray6_,
            mlfNGet(1, mclVv(ax, "ax"), _mxarray6_, NULL),
            _mxarray8_,
            mlfNGet(1, mclVv(ax, "ax"), _mxarray8_, NULL),
            _mxarray10_,
            mlfNGet(1, mclVv(ax, "ax"), _mxarray10_, NULL),
            _mxarray12_,
            mlfNGet(1, mclVv(ax, "ax"), _mxarray12_, NULL),
            _mxarray14_,
            mclVa(string, "string"),
            mlfIndexRef(
              mclVa(varargin, "varargin"), "{?}", mlfCreateColonIndex()),
            NULL));
    /*
     * 'FontName',   get(ax, 'FontName'), ...
     * 'FontSize',   get(ax, 'FontSize'), ...
     * 'FontWeight', get(ax, 'FontWeight'), ...
     * 'string',     string,varargin{:});
     * end
     */
    }
    /*
     * 
     * if nargout > 0
     */
    if (nargout_ > 0) {
        /*
         * hh = h;
         */
        mlfAssign(&hh, mclVv(h, "h"));
    /*
     * end
     */
    }
    mclValidateOutput(hh, 1, nargout_, "hh", "xlabel");
    mxDestroyArray(ans);
    mxDestroyArray(ax);
    mxDestroyArray(h);
    mxDestroyArray(varargin);
    mxDestroyArray(string);
    mclSetCurrentLocalFunctionTable(save_local_function_table_);
    return hh;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区欧美二区| 国产偷国产偷亚洲高清人白洁| 色999日韩国产欧美一区二区| 91高清在线观看| 国产三级三级三级精品8ⅰ区| 亚洲欧美区自拍先锋| 久久国产精品一区二区| 91片黄在线观看| 久久久三级国产网站| 亚洲影视在线播放| 高清成人免费视频| 91精品一区二区三区在线观看| 中文字幕国产一区| 美女性感视频久久| 欧美日韩黄色一区二区| 成人欧美一区二区三区| 久久精品国产一区二区| 欧亚一区二区三区| 中文字幕在线一区免费| 国产精品一区2区| 6080国产精品一区二区| 亚洲欧美日韩一区二区三区在线观看| 蜜臀av性久久久久蜜臀aⅴ四虎| 欧美视频一区在线| 亚洲免费观看高清完整版在线观看熊| 国产主播一区二区| 精品国精品自拍自在线| 午夜视频在线观看一区二区三区| 成人精品免费看| 国产亚洲欧美日韩日本| 加勒比av一区二区| 欧美一区二区三区视频免费播放| 亚洲一区二区在线播放相泽| 97久久久精品综合88久久| 国产精品天干天干在线综合| 国产成人午夜99999| 欧美精品一区二区高清在线观看| 美国十次了思思久久精品导航| 91麻豆精品国产91久久久久 | 99久久夜色精品国产网站| 亚洲精品一区二区三区蜜桃下载 | 在线精品视频免费观看| 国产精品久久久久久久浪潮网站| 粉嫩绯色av一区二区在线观看| 久久久精品国产免大香伊| 国产一区日韩二区欧美三区| 欧美精彩视频一区二区三区| 成人综合激情网| 自拍偷拍亚洲欧美日韩| 欧美中文字幕一区| 日韩精品国产精品| 精品久久久久久久久久久久包黑料| 美女在线观看视频一区二区| 久久久美女毛片| 成人黄色av电影| 一区二区三区免费| 56国语精品自产拍在线观看| 日韩二区三区四区| 国产亚洲欧美一级| 色综合一个色综合| 亚洲国产毛片aaaaa无费看 | 91精品国产入口在线| 91.xcao| 亚洲乱码国产乱码精品精可以看| 色综合久久综合网97色综合| 一区二区三区不卡视频在线观看| 欧美狂野另类xxxxoooo| 国产乱码精品1区2区3区| 在线视频中文字幕一区二区| 日一区二区三区| 国产视频一区二区在线观看| 色哟哟精品一区| 美女性感视频久久| 亚洲欧美日韩一区二区| 欧美一区二区免费观在线| 国产精品18久久久久| 亚洲欧美日韩电影| 久久综合99re88久久爱| 在线视频综合导航| 国产99久久久国产精品潘金网站| 亚洲高清视频的网址| 久久久综合激的五月天| 欧美性猛片aaaaaaa做受| 国产一区亚洲一区| 香蕉成人啪国产精品视频综合网| 国产亚洲视频系列| 欧美视频一区二区| 成人伦理片在线| 久久久影视传媒| 欧美亚男人的天堂| proumb性欧美在线观看| 久久99热99| 亚洲午夜免费视频| 国产精品无遮挡| 久久综合狠狠综合久久激情| 欧美日韩精品免费| 91小视频在线观看| 成人免费视频播放| 韩国一区二区三区| 久久精品国产亚洲高清剧情介绍| 亚洲影视资源网| 欧美日韩免费观看一区二区三区| 国产999精品久久| 久久精品国产亚洲高清剧情介绍| 亚洲成人激情自拍| 一区二区三区四区蜜桃 | 欧美一区二区三区色| 色丁香久综合在线久综合在线观看 | 日韩成人免费电影| 亚洲午夜私人影院| 亚洲一区二区精品视频| 国产精品成人一区二区三区夜夜夜| 成人伦理片在线| 成人a免费在线看| 国产成人精品免费一区二区| 精品一区二区在线免费观看| 日本成人在线看| 日本不卡的三区四区五区| 亚州成人在线电影| 亚洲18女电影在线观看| 亚洲国产美国国产综合一区二区| 亚洲一区二区av电影| 亚洲国产中文字幕| 偷拍一区二区三区| 日韩成人一区二区| 蜜臀精品久久久久久蜜臀| 国产片一区二区| 中文在线免费一区三区高中清不卡 | 欧美国产丝袜视频| 欧美高清在线一区二区| 国产精品福利一区| 亚洲资源在线观看| 日韩中文字幕不卡| 精品一区二区三区免费毛片爱| 久久se精品一区精品二区| 精品亚洲成a人在线观看| 国产成人精品午夜视频免费 | 成人av免费在线| 色综合中文字幕国产| 韩国在线一区二区| 国产二区国产一区在线观看| 成人国产视频在线观看| 色94色欧美sute亚洲线路一久| 欧美男男青年gay1069videost| 日本高清不卡aⅴ免费网站| 欧美天天综合网| 日韩三区在线观看| 中文字幕乱码亚洲精品一区| 亚洲一区二区综合| 国产精品一区在线观看你懂的| 国产剧情一区在线| 亚洲视频精选在线| 秋霞午夜av一区二区三区| 美女国产一区二区| 日本福利一区二区| 精品国产乱码久久久久久久久| 国产精品日韩精品欧美在线| 亚洲一区二区av电影| 国产乱理伦片在线观看夜一区| 91免费在线播放| 久久亚洲精品小早川怜子| 一区二区三区四区在线免费观看| 琪琪一区二区三区| av中文字幕不卡| 欧美成人免费网站| 亚洲精品视频自拍| 中文成人av在线| 日韩电影免费在线| av中文字幕在线不卡| 精品少妇一区二区三区日产乱码 | 日韩欧美一级精品久久| 国产精品入口麻豆原神| 美女mm1313爽爽久久久蜜臀| 色综合亚洲欧洲| 国产目拍亚洲精品99久久精品| 婷婷成人激情在线网| 成人天堂资源www在线| 欧美白人最猛性xxxxx69交| 亚洲国产精品久久人人爱蜜臀| 国产成人精品网址| 欧美精品一区二区三区蜜桃 | 美国毛片一区二区| 欧美三级日本三级少妇99| 国产精品久久久久永久免费观看| 蜜桃91丨九色丨蝌蚪91桃色| 欧美在线一区二区三区| 亚洲天堂精品视频| 成人免费视频免费观看| 久久久天堂av| 国产麻豆精品在线| 制服丝袜亚洲网站| 亚洲午夜激情av| 欧洲av在线精品| 亚洲午夜精品网| 欧美三级电影网站| 亚洲18色成人| 欧美丰满一区二区免费视频| 亚洲一区二区三区四区在线| 在线观看区一区二| 亚洲永久免费av|