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

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

?? calcjx.c

?? nnToolKit 神經(jīng)網(wǎng)絡工具包是基于 MATLAB 神經(jīng)網(wǎng)絡工具箱自行開發(fā)的一組神經(jīng)網(wǎng)絡算法函數(shù)庫
?? C
?? 第 1 頁 / 共 5 頁
字號:
/*
 * MATLAB Compiler: 3.0
 * Date: Sun May 13 16:47:41 2007
 * 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" "-silentsetup" "-d"
 * "d:/MATLAB6p5/work/nnToolKit/src" "-B" "csglcom:nnToolKit,nnToolKit,2.0"
 * "-B" "sgl" "-m" "-W" "main" "-L" "C" "-t" "-T" "link:exe" "-h"
 * "libmmfile.mlib" "-W" "mainhg" "libmwsglm.mlib" "-t" "-W"
 * "comhg:nnToolKit,nnToolKit,2.0" "-T" "link:lib" "-h" "libmmfile.mlib" "-i"
 * "-i" "D:/MATLAB6p5/work/nnToolKit/lmnet/LmSimu.m"
 * "D:/MATLAB6p5/work/nnToolKit/lmnet/LmTrain.m"
 * "D:/MATLAB6p5/work/nnToolKit/sofm/SofmSimu.m"
 * "D:/MATLAB6p5/work/nnToolKit/sofm/SofmTrain.m" 
 */
#include "calcjx.h"
#include "libmatlbm.h"
#include "libmmfile.h"
static mxArray * _mxarray0_;
static mxArray * _mxarray1_;
static mxArray * _mxarray2_;
static mxArray * _mxarray3_;

static mxChar _array5_[1] = { 'p' };
static mxArray * _mxarray4_;

static mxChar _array7_[1] = { 'w' };
static mxArray * _mxarray6_;
static mxArray * _mxarray8_;

void InitializeModule_calcjx(void) {
    _mxarray0_ = mclInitializeDouble(1.0);
    _mxarray1_ = mclInitializeDouble(0.0);
    _mxarray2_ = mclInitializeDoubleVector(0, 0, (double *)NULL);
    _mxarray3_ = mclInitializeDouble(-1.0);
    _mxarray4_ = mclInitializeString(1, _array5_);
    _mxarray6_ = mclInitializeString(1, _array7_);
    _mxarray8_ = mclInitializeDouble(2.0);
}

void TerminateModule_calcjx(void) {
    mxDestroyArray(_mxarray8_);
    mxDestroyArray(_mxarray6_);
    mxDestroyArray(_mxarray4_);
    mxDestroyArray(_mxarray3_);
    mxDestroyArray(_mxarray2_);
    mxDestroyArray(_mxarray1_);
    mxDestroyArray(_mxarray0_);
}

static mxArray * mlfCalcjx_repcol(mxArray * m_in, mxArray * n);
static void mlxCalcjx_repcol(int nlhs,
                             mxArray * plhs[],
                             int nrhs,
                             mxArray * prhs[]);
static mxArray * mlfCalcjx_repcolint(mxArray * m_in, mxArray * n);
static void mlxCalcjx_repcolint(int nlhs,
                                mxArray * plhs[],
                                int nrhs,
                                mxArray * prhs[]);
static mxArray * mlfCalcjx_reprow(mxArray * m_in, mxArray * n);
static void mlxCalcjx_reprow(int nlhs,
                             mxArray * plhs[],
                             int nrhs,
                             mxArray * prhs[]);
static mxArray * mlfCalcjx_reprowint(mxArray * m_in, mxArray * n);
static void mlxCalcjx_reprowint(int nlhs,
                                mxArray * plhs[],
                                int nrhs,
                                mxArray * prhs[]);
static mxArray * Mcalcjx(int nargout_,
                         mxArray * net,
                         mxArray * PD,
                         mxArray * BZ,
                         mxArray * IWZ,
                         mxArray * LWZ,
                         mxArray * N,
                         mxArray * Ac,
                         mxArray * Q,
                         mxArray * TS);
static mxArray * Mcalcjx_repcol(int nargout_, mxArray * m_in, mxArray * n);
static mxArray * Mcalcjx_repcolint(int nargout_, mxArray * m_in, mxArray * n);
static mxArray * Mcalcjx_reprow(int nargout_, mxArray * m_in, mxArray * n);
static mxArray * Mcalcjx_reprowint(int nargout_, mxArray * m_in, mxArray * n);

static mexFunctionTableEntry local_function_table_[4]
  = { { "repcol", mlxCalcjx_repcol, 2, 1, NULL },
      { "repcolint", mlxCalcjx_repcolint, 2, 1, NULL },
      { "reprow", mlxCalcjx_reprow, 2, 1, NULL },
      { "reprowint", mlxCalcjx_reprowint, 2, 1, NULL } };

_mexLocalFunctionTable _local_function_table_calcjx
  = { 4, local_function_table_ };

/*
 * The function "mlfCalcjx" contains the normal interface for the "calcjx"
 * M-function from file "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines
 * 1-223). This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
mxArray * mlfCalcjx(mxArray * net,
                    mxArray * PD,
                    mxArray * BZ,
                    mxArray * IWZ,
                    mxArray * LWZ,
                    mxArray * N,
                    mxArray * Ac,
                    mxArray * Q,
                    mxArray * TS) {
    int nargout = 1;
    mxArray * jx = NULL;
    mlfEnterNewContext(0, 9, net, PD, BZ, IWZ, LWZ, N, Ac, Q, TS);
    jx = Mcalcjx(nargout, net, PD, BZ, IWZ, LWZ, N, Ac, Q, TS);
    mlfRestorePreviousContext(0, 9, net, PD, BZ, IWZ, LWZ, N, Ac, Q, TS);
    return mlfReturnValue(jx);
}

/*
 * The function "mlxCalcjx" contains the feval interface for the "calcjx"
 * M-function from file "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines
 * 1-223). The feval function calls the implementation version of calcjx
 * through this function. This function processes any input arguments and
 * passes them to the implementation version of the function, appearing above.
 */
void mlxCalcjx(int nlhs, mxArray * plhs[], int nrhs, mxArray * prhs[]) {
    mxArray * mprhs[9];
    mxArray * mplhs[1];
    int i;
    if (nlhs > 1) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: calcjx Line: 1 Column: "
            "1 The function \"calcjx\" was called with mor"
            "e than the declared number of outputs (1)."),
          NULL);
    }
    if (nrhs > 9) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: calcjx Line: 1 Column: "
            "1 The function \"calcjx\" was called with mor"
            "e than the declared number of inputs (9)."),
          NULL);
    }
    for (i = 0; i < 1; ++i) {
        mplhs[i] = NULL;
    }
    for (i = 0; i < 9 && i < nrhs; ++i) {
        mprhs[i] = prhs[i];
    }
    for (; i < 9; ++i) {
        mprhs[i] = NULL;
    }
    mlfEnterNewContext(
      0,
      9,
      mprhs[0],
      mprhs[1],
      mprhs[2],
      mprhs[3],
      mprhs[4],
      mprhs[5],
      mprhs[6],
      mprhs[7],
      mprhs[8]);
    mplhs[0]
      = Mcalcjx(
          nlhs,
          mprhs[0],
          mprhs[1],
          mprhs[2],
          mprhs[3],
          mprhs[4],
          mprhs[5],
          mprhs[6],
          mprhs[7],
          mprhs[8]);
    mlfRestorePreviousContext(
      0,
      9,
      mprhs[0],
      mprhs[1],
      mprhs[2],
      mprhs[3],
      mprhs[4],
      mprhs[5],
      mprhs[6],
      mprhs[7],
      mprhs[8]);
    plhs[0] = mplhs[0];
}

/*
 * The function "mlfCalcjx_repcol" contains the normal interface for the
 * "calcjx/repcol" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 223-230). This function
 * processes any input arguments and passes them to the implementation version
 * of the function, appearing above.
 */
static mxArray * mlfCalcjx_repcol(mxArray * m_in, mxArray * n) {
    int nargout = 1;
    mxArray * m = NULL;
    mlfEnterNewContext(0, 2, m_in, n);
    m = Mcalcjx_repcol(nargout, m_in, n);
    mlfRestorePreviousContext(0, 2, m_in, n);
    return mlfReturnValue(m);
}

/*
 * The function "mlxCalcjx_repcol" contains the feval interface for the
 * "calcjx/repcol" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 223-230). The feval
 * function calls the implementation version of calcjx/repcol through this
 * function. This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
static void mlxCalcjx_repcol(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: calcjx/repcol Line: 223 Colu"
            "mn: 1 The function \"calcjx/repcol\" was called wi"
            "th more than the declared number of outputs (1)."),
          NULL);
    }
    if (nrhs > 2) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: calcjx/repcol Line: 223 Colu"
            "mn: 1 The function \"calcjx/repcol\" was called wi"
            "th more than the declared number of inputs (2)."),
          NULL);
    }
    for (i = 0; i < 1; ++i) {
        mplhs[i] = NULL;
    }
    for (i = 0; i < 2 && i < nrhs; ++i) {
        mprhs[i] = prhs[i];
    }
    for (; i < 2; ++i) {
        mprhs[i] = NULL;
    }
    mlfEnterNewContext(0, 2, mprhs[0], mprhs[1]);
    mplhs[0] = Mcalcjx_repcol(nlhs, mprhs[0], mprhs[1]);
    mlfRestorePreviousContext(0, 2, mprhs[0], mprhs[1]);
    plhs[0] = mplhs[0];
}

/*
 * The function "mlfCalcjx_repcolint" contains the normal interface for the
 * "calcjx/repcolint" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 230-237). This function
 * processes any input arguments and passes them to the implementation version
 * of the function, appearing above.
 */
static mxArray * mlfCalcjx_repcolint(mxArray * m_in, mxArray * n) {
    int nargout = 1;
    mxArray * m = NULL;
    mlfEnterNewContext(0, 2, m_in, n);
    m = Mcalcjx_repcolint(nargout, m_in, n);
    mlfRestorePreviousContext(0, 2, m_in, n);
    return mlfReturnValue(m);
}

/*
 * The function "mlxCalcjx_repcolint" contains the feval interface for the
 * "calcjx/repcolint" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 230-237). The feval
 * function calls the implementation version of calcjx/repcolint through this
 * function. This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
static void mlxCalcjx_repcolint(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: calcjx/repcolint Line: 230 Col"
            "umn: 1 The function \"calcjx/repcolint\" was called "
            "with more than the declared number of outputs (1)."),
          NULL);
    }
    if (nrhs > 2) {
        mlfError(
          mxCreateString(
            "Run-time Error: File: calcjx/repcolint Line: 230 Col"
            "umn: 1 The function \"calcjx/repcolint\" was called "
            "with more than the declared number of inputs (2)."),
          NULL);
    }
    for (i = 0; i < 1; ++i) {
        mplhs[i] = NULL;
    }
    for (i = 0; i < 2 && i < nrhs; ++i) {
        mprhs[i] = prhs[i];
    }
    for (; i < 2; ++i) {
        mprhs[i] = NULL;
    }
    mlfEnterNewContext(0, 2, mprhs[0], mprhs[1]);
    mplhs[0] = Mcalcjx_repcolint(nlhs, mprhs[0], mprhs[1]);
    mlfRestorePreviousContext(0, 2, mprhs[0], mprhs[1]);
    plhs[0] = mplhs[0];
}

/*
 * The function "mlfCalcjx_reprow" contains the normal interface for the
 * "calcjx/reprow" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 237-244). This function
 * processes any input arguments and passes them to the implementation version
 * of the function, appearing above.
 */
static mxArray * mlfCalcjx_reprow(mxArray * m_in, mxArray * n) {
    int nargout = 1;
    mxArray * m = NULL;
    mlfEnterNewContext(0, 2, m_in, n);
    m = Mcalcjx_reprow(nargout, m_in, n);
    mlfRestorePreviousContext(0, 2, m_in, n);
    return mlfReturnValue(m);
}

/*
 * The function "mlxCalcjx_reprow" contains the feval interface for the
 * "calcjx/reprow" M-function from file
 * "d:\matlab6p5\toolbox\nnet\nnutils\calcjx.m" (lines 237-244). The feval
 * function calls the implementation version of calcjx/reprow through this
 * function. This function processes any input arguments and passes them to the
 * implementation version of the function, appearing above.
 */
static void mlxCalcjx_reprow(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: calcjx/reprow Line: 237 Colu"
            "mn: 1 The function \"calcjx/reprow\" was called wi"
            "th more than the declared number of outputs (1)."),
          NULL);
    }
    if (nrhs > 2) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美成人免费网站| 日产国产欧美视频一区精品| 一区二区三区中文字幕电影 | 欧美日韩一二三| 欧美精品一区二区久久婷婷| 亚洲一区二区视频在线观看| 国产精品77777竹菊影视小说| 欧美亚洲综合色| 日本一区二区三区高清不卡| 日韩中文字幕av电影| 色悠悠久久综合| 国产亚洲精品bt天堂精选| 亚洲午夜三级在线| 色综合一个色综合| 久久99国产精品免费网站| 色综合激情久久| 国产欧美精品一区二区三区四区| 美国av一区二区| 欧美精品一卡两卡| 一区二区三区四区国产精品| 成人看片黄a免费看在线| 欧美成人a∨高清免费观看| 亚洲成人激情自拍| 91麻豆免费视频| 国产精品理论在线观看| 国产麻豆精品久久一二三| 精品国产制服丝袜高跟| 日韩av网站免费在线| 欧美三级电影精品| 亚洲电影一级片| 欧美日韩极品在线观看一区| 亚洲已满18点击进入久久| 色婷婷香蕉在线一区二区| 亚洲美女在线一区| 色呦呦国产精品| 一区二区三区在线视频免费| 91视频观看视频| 亚洲码国产岛国毛片在线| 日本道免费精品一区二区三区| 中文字幕在线观看一区二区| 国产成人精品免费一区二区| 欧美国产综合色视频| 成a人片亚洲日本久久| 中文字幕一区二区三区四区| 91影视在线播放| 夜夜嗨av一区二区三区四季av| 一本大道久久a久久精二百| 亚洲六月丁香色婷婷综合久久| 在线看不卡av| 日韩在线一区二区| 精品日韩成人av| 成人性生交大片免费看在线播放| 国产精品久久久久久久午夜片 | 精品久久久久香蕉网| 精品一区二区三区欧美| 26uuu另类欧美亚洲曰本| 国产精品自产自拍| 国产精品久久国产精麻豆99网站| 99精品热视频| 亚洲国产成人91porn| 日韩免费高清av| 国产成人精品免费视频网站| 17c精品麻豆一区二区免费| 色婷婷狠狠综合| 青青草国产精品97视觉盛宴| 久久蜜桃av一区二区天堂| 91视视频在线观看入口直接观看www| 玉足女爽爽91| www久久精品| 91福利在线观看| 激情深爱一区二区| 亚洲女同一区二区| 欧美一级xxx| 99精品久久只有精品| 日韩和的一区二区| 国产精品午夜在线| 欧美日韩大陆在线| 丁香婷婷综合五月| 日韩精品国产精品| 国产精品国产三级国产aⅴ入口 | 久久精品免费观看| 日韩美女视频一区二区 | 欧美一级片免费看| 国产精品国模大尺度视频| 欧美丝袜自拍制服另类| 蜜乳av一区二区| 精品对白一区国产伦| 成人性生交大片免费看在线播放 | 国产.精品.日韩.另类.中文.在线.播放 | 91.com视频| 国产乱码精品一区二区三区忘忧草 | 婷婷国产v国产偷v亚洲高清| 久久亚洲精精品中文字幕早川悠里 | 国产精品美女一区二区三区| 国产精品一线二线三线| 日韩精品高清不卡| 久久久久久久电影| 在线日韩一区二区| 麻豆一区二区三| 午夜精品久久久久久久久久久| 精品国产免费视频| 欧美色爱综合网| 国产不卡一区视频| 秋霞av亚洲一区二区三| 国产精品妹子av| 欧美tk—视频vk| 欧美怡红院视频| 丁香桃色午夜亚洲一区二区三区| 亚洲三级小视频| 亚洲精品成人a在线观看| 久久夜色精品一区| 欧美中文字幕一区二区三区 | 一本色道亚洲精品aⅴ| 久久99久久久欧美国产| 亚洲风情在线资源站| 国产精品乱码人人做人人爱 | www.亚洲色图| 国产麻豆9l精品三级站| 一区二区三区四区国产精品| 久久婷婷综合激情| 91麻豆精品国产| 欧美视频在线不卡| 99热在这里有精品免费| 国产成人精品免费网站| 久久不见久久见免费视频7| 一区二区在线观看av| 国产亚洲精品资源在线26u| 国产色产综合产在线视频| 欧美不卡一区二区| 欧美一区二区三区免费视频| 欧美精品日韩一本| 欧美日本韩国一区二区三区视频| 91久久久免费一区二区| 91啪亚洲精品| 国产成人8x视频一区二区| 高清av一区二区| 成人免费毛片片v| 成人激情免费视频| av日韩在线网站| 色综合色狠狠综合色| 91麻豆精东视频| 国产激情一区二区三区四区| 99精品欧美一区二区三区小说 | 亚洲男同1069视频| 中文字幕亚洲一区二区av在线| 国产日韩av一区二区| 中文字幕不卡在线观看| 中文一区在线播放| 亚洲日本在线a| 亚洲激情中文1区| 日本伊人午夜精品| 国产综合色在线视频区| 成人动漫在线一区| 色94色欧美sute亚洲线路二| 91麻豆精品久久久久蜜臀| 51精品国自产在线| 日韩精品一区二区三区视频播放| 精品国产一区二区国模嫣然| 国产色91在线| 国产精品电影院| 九九在线精品视频| 本田岬高潮一区二区三区| 欧美色图片你懂的| 欧美不卡一区二区| 亚洲丝袜精品丝袜在线| 亚洲国产精品久久不卡毛片 | 久久久久青草大香线综合精品| 日韩一区中文字幕| 三级在线观看一区二区| 国产老肥熟一区二区三区| 99精品在线观看视频| 91精品国产丝袜白色高跟鞋| 国产日韩欧美一区二区三区综合| 亚洲自拍欧美精品| 国产v日产∨综合v精品视频| 日本韩国一区二区三区| 精品成人一区二区| 中文字幕av一区二区三区免费看| 日韩av不卡一区二区| 成人美女视频在线观看| 欧美日韩精品欧美日韩精品| 国产午夜精品在线观看| 亚洲成a人片综合在线| 国产成人超碰人人澡人人澡| 欧美一卡2卡三卡4卡5免费| 国产精品丝袜黑色高跟| 婷婷成人综合网| 91小视频免费看| 精品久久久久99| 亚洲不卡在线观看| 国产乱码精品1区2区3区| 日韩视频在线观看一区二区| 亚洲丝袜精品丝袜在线| 国产尤物一区二区| 日本韩国欧美在线| 久久精品夜色噜噜亚洲a∨| 蜜桃视频在线观看一区| 色爱区综合激月婷婷| 一区二区三区四区精品在线视频| 成人免费电影视频|