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

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

?? subplot.cpp

?? MATLAB命令行下mcc命令示范3
?? CPP
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
    mwArray handle(mclGetUninitializedArray());
    mwArray tol(mclGetUninitializedArray());
    mwArray delay_destroy(mclGetUninitializedArray());
    mwArray create_axis(mclGetUninitializedArray());
    mwArray kill_siblings(mclGetUninitializedArray());
    mwArray narg(mclGetUninitializedArray());
    //
    // %SUBPLOT Create axes in tiled positions.
    // %   H = SUBPLOT(m,n,p), or SUBPLOT(mnp), breaks the Figure window
    // %   into an m-by-n matrix of small axes, selects the p-th axes for 
    // %   for the current plot, and returns the axis handle.  The axes 
    // %   are counted along the top row of the Figure window, then the
    // %   second row, etc.  For example,
    // % 
    // %       SUBPLOT(2,1,1), PLOT(income)
    // %       SUBPLOT(2,1,2), PLOT(outgo)
    // % 
    // %   plots income on the top half of the window and outgo on the
    // %   bottom half.
    // % 
    // %   SUBPLOT(m,n,p), if the axis already exists, makes it current.
    // %   SUBPLOT(m,n,P), where P is a vector, specifies an axes position
    // %   that covers all the subplot positions listed in P.
    // %   SUBPLOT(H), where H is an axis handle, is another way of making
    // %   an axis current for subsequent plotting commands.
    // %
    // %   SUBPLOT('position',[left bottom width height]) creates an
    // %   axis at the specified position in normalized coordinates (in 
    // %   in the range from 0.0 to 1.0).
    // %
    // %   If a SUBPLOT specification causes a new axis to overlap an
    // %   existing axis, the existing axis is deleted.  For example,
    // %   the statement SUBPLOT(1,2,1) deletes all existing axes overlapping
    // %   the left side of the Figure window and creates a new axis on that
    // %   side.
    // %
    // %   SUBPLOT(111) is an exception to the rules above, and is not
    // %   identical in behavior to SUBPLOT(1,1,1).  For reasons of backwards
    // %   compatibility, it is a special case of subplot which does not
    // %   immediately create an axes, but instead sets up the figure so that
    // %   the next graphics command executes CLF RESET in the figure
    // %   (deleting all children of the figure), and creates a new axes in
    // %   the default position.  This syntax does not return a handle, so it
    // %   is an error to specify a return argument.  The delayed CLF RESET
    // %   is accomplished by setting the figure's NextPlot to 'replace'.
    // 
    // %   Copyright 1984-2000 The MathWorks, Inc. 
    // %   $Revision: 5.19 $  $Date: 2000/06/01 02:53:21 $
    // 
    // % we will kill all overlapping axes siblings if we encounter the mnp
    // % or m,n,p specifier (excluding '111').
    // % But if we get the 'position' or H specifier, we won't check for and
    // % delete overlapping siblings:
    // narg = nargin;
    //
    narg = nargin_;
    //
    // kill_siblings = 0;
    //
    kill_siblings = _mxarray4_;
    //
    // create_axis = 1;
    //
    create_axis = _mxarray5_;
    //
    // delay_destroy = 0;
    //
    delay_destroy = _mxarray4_;
    //
    // tol = sqrt(eps);
    //
    tol = sqrt(_mxarray6_);
    //
    // if narg == 0 % make compatible with 3.5, i.e. subplot == subplot(111)
    //
    if (mclEqBool(mwVv(narg, "narg"), _mxarray4_)) {
        //
        // nrows = 111;
        //
        nrows = _mxarray7_;
        //
        // narg = 1;
        //
        narg = _mxarray5_;
    //
    // end
    //
    }
    //
    // 
    // %check for encoded format
    // handle = '';
    //
    handle = _mxarray8_;
    //
    // position = '';
    //
    position = _mxarray8_;
    //
    // if narg == 1
    //
    if (mclEqBool(mwVv(narg, "narg"), _mxarray5_)) {
        //
        // % The argument could be one of 3 things:
        // % 1) a 3-digit number 100 < num < 1000, of the format mnp
        // % 2) a 3-character string containing a number as above
        // % 3) an axis handle
        // code = nrows;
        //
        code = mwVsa(nrows, "nrows");
        //
        // 
        // % turn string into a number:
        // if(isstr(code)) code = str2double(code); end
        //
        if (tobool(mwVe(isstr(mwVv(code, "code"))))) {
            code = str2double(mwVv(code, "code"));
        }
        //
        // 
        // % number with a fractional part can only be an identifier:
        // if(rem(code,1) > 0)
        //
        if (mclGtBool(mwVe(rem(mwVv(code, "code"), _mxarray5_)), _mxarray4_)) {
            //
            // handle = code;
            //
            handle = mwVsv(code, "code");
            //
            // if ~strcmp(get(handle,'type'),'axes')
            //
            if (mclNotBool(
                  mwVe(
                    strcmp(
                      mwVe(
                        Nget(
                          1, mwVarargin(mwVv(handle, "handle"), _mxarray9_))),
                      _mxarray11_)))) {
                //
                // error('Requires valid axes handle for input.')
                //
                error(_mxarray13_);
            //
            // end
            //
            }
            //
            // create_axis = 0;
            //
            create_axis = _mxarray4_;
        //
        // % all other numbers will be converted to mnp format:
        // else
        //
        } else {
            //
            // thisPlot = rem(code, 10);
            //
            thisPlot = rem(mwVv(code, "code"), _mxarray15_);
            //
            // ncols = rem( fix(code-thisPlot)/10,10);
            //
            ncols
              = rem(
                  mwVe(fix(mwVv(code, "code") - mwVa(thisPlot, "thisPlot")))
                  / _mxarray15_,
                  _mxarray15_);
            //
            // nrows = fix(code/100);
            //
            nrows = fix(mwVv(code, "code") / _mxarray16_);
            //
            // if nrows*ncols < thisPlot
            //
            if (mclLtBool(
                  mwVa(nrows, "nrows") * mwVa(ncols, "ncols"),
                  mwVa(thisPlot, "thisPlot"))) {
                //
                // error('Index exceeds number of subplots.');
                //
                error(_mxarray17_);
            //
            // end
            //
            }
            //
            // kill_siblings = 1;
            //
            kill_siblings = _mxarray5_;
            //
            // if(code == 111)
            //
            if (mclEqBool(mwVv(code, "code"), _mxarray7_)) {
                //
                // create_axis   = 0;
                //
                create_axis = _mxarray4_;
                //
                // delay_destroy = 1;
                //
                delay_destroy = _mxarray5_;
            //
            // else
            //
            } else {
                //
                // create_axis   = 1;
                //
                create_axis = _mxarray5_;
                //
                // delay_destroy = 0;
                //
                delay_destroy = _mxarray4_;
            //
            // end
            //
            }
        //
        // end
        //
        }
    //
    // elseif narg == 2
    //
    } else if (mclEqBool(mwVv(narg, "narg"), _mxarray19_)) {
        //
        // % The arguments MUST be the string 'position' and a 4-element vector:
        // if(strcmp(lower(nrows), 'position'))
        //
        if (tobool(
              mwVe(strcmp(mwVe(lower(mwVa(nrows, "nrows"))), _mxarray20_)))) {
            //
            // pos_size = size(ncols);
            //
            pos_size = size(mwValueVarargout(), mwVa(ncols, "ncols"));
            //
            // if(pos_size(1) * pos_size(2) == 4)
            //
            if (mclEqBool(
                  mwVe(mclIntArrayRef(mwVsv(pos_size, "pos_size"), 1))
                  * mwVe(mclIntArrayRef(mwVsv(pos_size, "pos_size"), 2)),
                  _mxarray22_)) {
                //
                // position = ncols;
                //
                position = mwVsa(ncols, "ncols");
            //
            // else
            //
            } else {
                //
                // error(['subplot(''position'',',...
                //
                error(_mxarray23_);
            //
            // ' [left bottom width height]) is what works'])
            // end
            //
            }
        //
        // else
        //
        } else {
            //
            // error('Unknown command option')
            //
            error(_mxarray25_);
        //
        // end
        //
        }
        //
        // kill_siblings = 1; % Kill overlaps here also.
        //
        kill_siblings = _mxarray5_;
    //
    // elseif narg == 3
    //
    } else if (mclEqBool(mwVv(narg, "narg"), _mxarray27_)) {
        //
        // % passed in subplot(m,n,p) -- we should kill overlaps
        // % here too:
        // kill_siblings = 1;
        //
        kill_siblings = _mxarray5_;
    //
    // end
    //
    }
    //
    // 
    // % if we recovered an identifier earlier, use it:
    // if(~isempty(handle))
    //
    if (mclNotBool(mwVe(isempty(mwVv(handle, "handle"))))) {
        //
        // set(get(0,'CurrentFigure'),'CurrentAxes',handle);
        //
        ans.EqAns(
          Nset(
            0,
            mwVarargin(
              mwVe(Nget(1, mwVarargin(_mxarray4_, _mxarray28_))),
              _mxarray30_,
              mwVv(handle, "handle"))));
    //

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲蜜桃精久久久久久久| 一区二区在线看| 欧美综合视频在线观看| 精品一区二区三区久久| 亚洲精品视频在线看| 欧美不卡一区二区| 91官网在线观看| 国产一区久久久| 午夜精品福利一区二区蜜股av| 国产女人18水真多18精品一级做| 欧美视频一二三区| 不卡的av电影在线观看| 久久精品国产999大香线蕉| 一区二区三区高清不卡| 国产欧美综合色| 欧美大胆一级视频| 欧美色图一区二区三区| 99久久国产免费看| 成人性视频免费网站| 精品一区二区免费| 偷拍自拍另类欧美| 亚洲综合精品自拍| 国产精品的网站| 国产亚洲欧洲997久久综合| 日韩视频在线你懂得| 欧美在线999| 一本色道亚洲精品aⅴ| 波多野结衣的一区二区三区| 国产精品自在欧美一区| 久久爱另类一区二区小说| 日本成人在线看| 日本在线不卡视频一二三区| 亚洲国产精品麻豆| 亚洲一区在线观看免费观看电影高清| 国产精品妹子av| 国产精品三级在线观看| 国产日韩欧美综合一区| 国产亚洲一区二区在线观看| 日韩免费高清视频| 精品毛片乱码1区2区3区| 欧美mv日韩mv| 欧美成人精品福利| 精品国一区二区三区| 日韩精品中午字幕| 欧美成人三级电影在线| 2017欧美狠狠色| 久久亚洲二区三区| 国产三区在线成人av| 国产色婷婷亚洲99精品小说| 中文字幕av在线一区二区三区| 久久久亚洲精品石原莉奈| 久久久激情视频| 中文字幕中文字幕一区| ●精品国产综合乱码久久久久| 亚洲日本护士毛茸茸| 依依成人综合视频| 亚洲成人免费av| 日本免费新一区视频| 蜜桃91丨九色丨蝌蚪91桃色| 国产一区二区三区不卡在线观看 | 秋霞成人午夜伦在线观看| 美女高潮久久久| 国产福利精品一区二区| 成人国产精品免费网站| 在线观看亚洲精品| 欧美一区二区三区影视| 久久久无码精品亚洲日韩按摩| 中国色在线观看另类| 一区二区三区丝袜| 免费成人av在线| 国产成人高清视频| 欧美伊人精品成人久久综合97 | 狠狠色综合日日| 成人国产免费视频| 欧美日本一区二区| 久久久久久久久97黄色工厂| 最新不卡av在线| 日韩精品久久久久久| 极品销魂美女一区二区三区| 粉嫩绯色av一区二区在线观看| 在线视频欧美精品| 精品国产麻豆免费人成网站| 国产精品区一区二区三区| 亚洲风情在线资源站| 国产精品一二一区| 欧美视频你懂的| 精品久久久久久久一区二区蜜臀| 国产精品护士白丝一区av| 日本欧美加勒比视频| 成人av网站大全| 欧美一区二区三区的| 国产精品国产成人国产三级 | 国产在线精品一区二区不卡了| 99国产精品久久久久久久久久久 | 久久综合九色综合久久久精品综合 | 婷婷久久综合九色综合绿巨人| 国产一区二区不卡| 欧美日韩中文精品| 中文字幕在线不卡| 久久国产成人午夜av影院| 91免费观看国产| 精品国产sm最大网站免费看| 一区二区三区电影在线播| 国产成人精品亚洲日本在线桃色 | 丁香婷婷综合五月| 欧美一区三区四区| 亚洲制服丝袜在线| 国产99久久久国产精品潘金| 在线综合亚洲欧美在线视频| ●精品国产综合乱码久久久久| 国模冰冰炮一区二区| 欧美日本在线看| 亚洲精品国产一区二区精华液| 国产精品亚洲第一区在线暖暖韩国| 777a∨成人精品桃花网| 亚洲欧美成人一区二区三区| 国产成人精品亚洲午夜麻豆| 日韩欧美国产电影| 日韩精品免费专区| 欧美三电影在线| 亚洲影院免费观看| 色久优优欧美色久优优| 国产精品国模大尺度视频| 国产成人精品影院| 国产日韩欧美亚洲| 国产麻豆精品久久一二三| 日韩欧美www| 狂野欧美性猛交blacked| 欧美精品亚洲一区二区在线播放| 亚洲伊人色欲综合网| 色系网站成人免费| 亚洲情趣在线观看| 色综合中文综合网| 国产精品毛片a∨一区二区三区 | 91视频在线看| 欧美激情在线观看视频免费| 国产成人免费在线观看不卡| 日韩精品在线网站| 蜜桃视频在线一区| 欧美一级片在线| 另类人妖一区二区av| 日韩免费高清av| 国内久久婷婷综合| 久久人人97超碰com| 国产盗摄女厕一区二区三区| 国产亚洲精久久久久久| 国产精品一区在线| 国产欧美日韩麻豆91| 成人性生交大片免费看在线播放| 国产丝袜美腿一区二区三区| eeuss鲁片一区二区三区| 亚洲美女视频一区| 欧美精品第1页| 麻豆国产精品777777在线| 国产亚洲精品7777| 99国产精品国产精品毛片| 一区二区三区**美女毛片| 欧美三级视频在线观看| 无吗不卡中文字幕| 精品国偷自产国产一区| 福利91精品一区二区三区| 中文字幕一区二区三区不卡| 欧美性猛交xxxxxxxx| 日本免费新一区视频| 久久综合狠狠综合| 成人97人人超碰人人99| 亚洲尤物视频在线| 精品乱码亚洲一区二区不卡| 丁香六月综合激情| 亚洲综合一二三区| 日韩女优毛片在线| www.亚洲精品| 日本vs亚洲vs韩国一区三区二区| 精品国产免费视频| 91麻豆精品视频| 免费人成精品欧美精品| 国产精品麻豆一区二区| 在线播放亚洲一区| 福利电影一区二区| 日韩精品视频网| 国产精品久久久久久久久图文区 | 国产精品久久久久aaaa| 欧美精品v日韩精品v韩国精品v| 韩国女主播一区二区三区| 亚洲老妇xxxxxx| 日韩视频在线你懂得| 97久久精品人人爽人人爽蜜臀| 亚洲成人综合在线| 中文久久乱码一区二区| 欧美日韩一级黄| 国产成人av在线影院| 午夜av区久久| 中文字幕乱码一区二区免费| 欧美日韩国产综合久久| 国产v日产∨综合v精品视频| 亚洲成人第一页| 中文字幕一区二区视频| 日韩欧美国产精品一区| 欧美性高清videossexo| 成人av在线播放网站|