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

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

?? mex.h

?? cao_m.m----主程序, cao法求最小嵌入維程序 reconstitution.m---------子程序,相重構程序
?? H
字號:
/*
 * @(#)mex.h    generated by: makeheader 4.21  Mon Aug 16 03:25:12 2004
 *
 *		built from:	../../src/include/copyright.h
 *				../../src/include/pragma_interface.h
 *				mex_typedefs.h
 *				./fmexapi.cpp
 *				./fmexapiv5.cpp
 *				./globals.cpp
 *				./mexapi.cpp
 *				./mexapiv4.cpp
 *				./mexapiv5.cpp
 *				./mexcbk.cpp
 *				./mexdispatch.cpp
 *				./mexintrf.cpp
 *				mexdbg.h
 */

#ifndef mex_h
#define mex_h


/*
 * Copyright 1984-2003 The MathWorks, Inc.
 * All Rights Reserved.
 */



/* Copyright 2003 The MathWorks, Inc. */

/*
 * Prevent g++ from making copies of vtable and typeinfo data
 * in every compilation unit.  By allowing for only one, we can
 * save space and prevent some situations where the linker fails
 * to coalesce them properly into a single entry.
 *
 * References:
 *    http://gcc.gnu.org/onlinedocs/gcc/Vague-Linkage.html#Vague%20Linkage
 *    http://gcc.gnu.org/onlinedocs/gcc/C---Interface.html
 */

#ifdef __cplusplus
#  ifdef GLNX86
#    pragma interface
#  endif
#endif



/* Copyright 1999-2001 The MathWorks, Inc. */

/* $Revision: 1.7.4.1 $ */
#ifndef mex_typedefs_h
#define mex_typedefs_h
typedef struct impl_info_tag *MEX_impl_info;

#include "matrix.h"

typedef struct mexGlobalTableEntry_Tag
{
    const char *name;             /* The name of the global */
    mxArray    **variable;        /* A pointer to the variable */ 
} mexGlobalTableEntry, *mexGlobalTable;

#if defined(MSWIND)
#define cicompare(s1,s2) utStrcmpi((s1),(s2))
#else
#define cicompare(s1,s2) strcmp((s1),(s2))
#endif
#define cscompare(s1,s2) strcmp((s1),(s2))

typedef struct mexFunctionTableEntry_tag {
  const char *  name;
  mxFunctionPtr f;
  int           nargin;
  int           nargout;
  struct _mexLocalFunctionTable *local_function_table;
} mexFunctionTableEntry, *mexFunctionTable;

typedef struct _mexLocalFunctionTable {
  size_t           length;
  mexFunctionTable entries;
} _mexLocalFunctionTable, *mexLocalFunctionTable;

typedef struct {
  void (*initialize)(void);
  void (*terminate)(void);
} _mexInitTermTableEntry, *mexInitTermTableEntry;

#define MEX_INFORMATION_VERSION 1

typedef struct {
  int                   version;
  int                   file_function_table_length;
  mexFunctionTable      file_function_table;
  int                   global_variable_table_length;
  mexGlobalTable        global_variable_table;
  int                   npaths;
  const char **         paths;
  int                   init_term_table_length;
  mexInitTermTableEntry init_term_table;
} _mex_information, *mex_information;

typedef mex_information(*fn_mex_file)(void);

typedef void (*fn_clean_up_after_error)(void);
typedef const char *(*fn_simple_function_to_string)(mxFunctionPtr f);

typedef void (*fn_mex_enter_mex_library)(mex_information x);
typedef fn_mex_enter_mex_library fn_mex_exit_mex_library;

typedef mexLocalFunctionTable (*fn_mex_get_local_function_table)(void);
typedef mexLocalFunctionTable (*fn_mex_set_local_function_table)(mexLocalFunctionTable);

#endif


/*
 * This header file "mex.h" declares all the types, macros and
 * functions necessary to interface mex files with the current
 * version of MATLAB.  See the release notes for information on 
 * supporting syntax from earlier versions.
 */  
#include "matrix.h"

#include <stdio.h>



#ifdef __cplusplus
extern "C" {
#endif
/*
 * mexFunction is the user defined C routine which is called upon invocation
 * of a mex function.
 */
void mexFunction(
    int           nlhs,           /* number of expected outputs */
    mxArray       *plhs[],        /* array of pointers to output arguments */
    int           nrhs,           /* number of inputs */
    const mxArray *prhs[]         /* array of pointers to input arguments */
);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Issue error message and return to MATLAB prompt
 */
extern void mexErrMsgTxt(
    const char	*error_msg	/* string with error message */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Issue formatted error message with corresponding error identifier and return to MATLAB
 * prompt.
 */
extern void mexErrMsgIdAndTxt(
    const char * identifier, /* string with error message identifier */
    const char * err_msg,    /* string with error message printf-style format */
    ...                      /* any additional arguments */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Invoke an unidentified warning. Such warnings can only be affected by the M-code
 * 'warning * all', since they have no specific identifier. See also mexWarnMsgIdAndTxt.
 */
extern void mexWarnMsgTxt(
    const char	*warn_msg	/* string with warning message */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Invoke a warning with message identifier 'identifier' and message derived from 'fmt' and
 * subsequent arguments. The warning may either get printed as is (if it is set to 'on'), or
 * not actually get printed (if set to 'off'). See 'help warning' in MATLAB for more
 * details.
 */
extern void mexWarnMsgIdAndTxt(
    const char * identifier,    /* string with warning message identifer */
    const char * warn_msg,	/* string with warning message printf-style format */
    ...                         /* any additional arguments */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * mex equivalent to MATLAB's "disp" function
 */
extern int mexPrintf(
    const char	*fmt,	/* printf style format */
    ...				/* any additional arguments */
    );
#ifdef __cplusplus
}
#endif


#define printf mexPrintf

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Remove all components of an array plus the array header itself
 * from MATLAB's memory allocation list.  The array will now
 * persist between calls to the mex function.  To destroy this
 * array, you will need to explicitly call mxDestroyArray().
 */
extern void mexMakeArrayPersistent(
    mxArray *pa              /* pointer to array */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Remove memory previously allocated via mxCalloc from MATLAB's
 * memory allocation list.  To free this memory, you will need to
 * explicitly call mxFree().
 */
extern void mexMakeMemoryPersistent(void *ptr);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Look up a function and return an opaque handle for use with
 * mexCallMATLABFunction.
 */
extern void mexGetFunctionHandle(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Call a function whose handle was determined by mexGetFunctionHandle.
 */
extern void mexCallMATLABFunction(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Register a function pointer as a MATLAB-callable function.
 */
extern void mexRegisterFunction(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * mex equivalent to MATLAB's "set" function
 */
extern int mexSet(double handle, const char *property, mxArray *value);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/* API interface which mimics the "get" function */
extern const mxArray *mexGet(double handle, const char *property);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * call MATLAB function
 */
extern int mexCallMATLAB(
    int		nlhs,			/* number of expected outputs */
    mxArray	*plhs[],		/* pointer array to outputs */
    int		nrhs,			/* number of inputs */
    mxArray	*prhs[],		/* pointer array to inputs */
    const char	*fcn_name		/* name of function to execute */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * set or clear mexCallMATLAB trap flag (if set then an error in  
 * mexCallMATLAB is caught and mexCallMATLAB will return a status value, 
 * if not set an error will cause control to revert to MATLAB)
 */
extern void mexSetTrapFlag(int flag);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Perform in-place subscript assignment.
 */
extern void mexSubsAssign(
      mxArray *plhs, /* pointer to lhs, to be modified in-place */
      const mxArray *prhs, /* pointer to rhs */
      const mxArray *subs[], /* array of subscripts for lhs */
      int nsubs     /* number os subscripts */
      );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Retrieve a specified subset of an array.
 */
extern mxArray *mexSubsReference(
      const mxArray *prhs, /* pointer to rhs */
      const mxArray *subs[], /* array of subscripts for rhs */
      int nsubs /* number of subscripts */
      );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Print an assertion-style error message and return control to the
 * MATLAB command line.
 */ 
extern void mexPrintAssertion(
		const char *test, 
		const char *fname, 
		int linenum, 
		const char *message);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Tell whether or not a mxArray is in MATLAB's global workspace.
 */
extern bool mexIsGlobal(const mxArray *pA);
#ifdef __cplusplus
}
#endif


#define mexGetGlobal()    mexGetGlobal_is_obsolete
#define mxSetString()     mxSetString_is_obsolete
#define mxSetDispMode()   mxSetDispMode_is_obsolete
#define mexGetMatrixPtr() mexGetMatrixPtr_is_obsolete
#define mexGetMatrix()    mexGetMatrix_is_obsolete
#define mexPutMatrix()    mexPutMatrix_is_obsolete
#define mexPutFull()      mexPutFull_is_obsolete
#define mexGetFull()      mexGetFull_is_obsolete
#define mexGetEps()       mexGetEps_is_obsolete
#define mexGetInf()       mexGetInf_is_obsolete
#define mexGetNaN()       mexGetNaN_is_obsolete
#define mexIsFinite()     mexIsFinite_is_obsolete
#define mexIsInf()        mexIsInf_is_obsolete
#define mexIsNaN()        mexIsNaN_is_obsolete


/*
 * mexAddFlops is no longer allowed.  
 */
#define mexAddFlops(x) mexAddFlops_is_obsolete

#if defined(V5_COMPAT)
#define mexPutArray(parray, workspace) mexPutVariable(workspace, mxGetName(parray), parray)
#define mexGetArray(name, workspace) mexGetVariable(workspace, name)
#define mexGetArrayPtr(name, workspace) mexGetVariablePtr(workspace, name)
#else
#define mexPutArray() mexPutArray_is_obsolete
#define mexGetArray() mexGetArray_is_obsolete
#define mexGetArrayPtr() mexGetArrayPtr_is_obsolete
#endif /* defined(V5_COMPAT) */

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Place a copy of the array value into the specified workspace with the
 * specified name
 */
extern int mexPutVariable(
    const char *workspace,
    const char *name,
    const mxArray *parray		/* matrix to copy */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * return a pointer to the array value with the specified variable
 * name in the specified workspace
 */
extern const mxArray *mexGetVariablePtr(
    const char *workspace,
    const char *name		/* name of symbol */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * return a copy of the array value with the specified variable
 * name in the specified workspace
 */
extern mxArray *mexGetVariable(
    const char	*workspace,		
    const char  *name                /* name of variable in question */
    );
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Lock a MEX-function so that it cannot be cleared from memory.
 */
extern void mexLock(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Unlock a locked MEX-function so that it can be cleared from memory.
 */
extern void mexUnlock(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Return true if the MEX-function is currently locked, false otherwise.
 */
extern bool mexIsLocked(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Return the name of a the MEXfunction currently executing.
 */
extern const char *mexFunctionName(void);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Parse and execute MATLAB syntax in string.  Returns zero if successful,
 * and a non zero value if an error occurs.
 */
extern int mexEvalString(
   const char *str	   /* matlab command string */
);
#ifdef __cplusplus
}
#endif

#ifdef __cplusplus
extern "C" {
#endif
/*
 * Register Mex-file's At-Exit function (accessed via MEX callback)
 */
extern int mexAtExit(
    void	(*exit_fcn)(void)
    );
#ifdef __cplusplus
}
#endif


#define NEW_DISPATCHER_EVAL_CALLER 1


/* Copyright 1996-1999 The MathWorks, Inc. */

/* $Revision: 1.9.4.1 $ */
#ifdef ARGCHECK

#include "mwdebug.h" /* Prototype _d versions of API functions */

#define mexAtExit(exitfcn) 				mexAtExit_d(exitfcn, __FILE__, __LINE__)
#define mexCallMATLAB(nlhs, plhs, nrhs, prhs, fcn) mexCallMATLAB_d(nlhs, plhs, nrhs, prhs, fcn, __FILE__, __LINE__)
#define mexErrMsgTxt(errmsg)			mexErrMsgTxt_d(errmsg, __FILE__, __LINE__)
#define mexEvalString(str) 				mexEvalString_d(str, __FILE__, __LINE__)
#define mexGet(handle, property) 		mexGet_d(handle, property, __FILE__, __LINE__)
#define mexGetVariable(workspace, name) 	mexGetVariable_d(workspace, name, __FILE__, __LINE__)
#define mexGetVariablePtr(workspace, name)      mexGetVariablePtr_d(workspace, name, __FILE__, __LINE__)
#define mexIsGlobal(pa)                 mexIsGlobal_d(pa, __FILE__, __LINE__)
#define mexMakeArrayPersistent(pa) 		mexMakeArrayPersistent_d(pa, __FILE__, __LINE__)              
#define mexMakeMemoryPersistent(ptr) 	mexMakeMemoryPersistent_d(ptr, __FILE__, __LINE__)
#define mexPutVariable(workspace, name, pa) 	mexPutVariable_d(workspace, name, pa, __FILE__, __LINE__)
#define mexSet(handle, property, value) mexSet_d(handle, property, value, __FILE__, __LINE__)
#define mexSetTrapFlag(value)           mexSetTrapFlag_d(value, __FILE__, __LINE__)
#define mexSubsAssign(plhs, sub, nsubs, rhs)    mexSubsAssign_d(plhs, sub, nsubs, rhs, __FILE__, __LINE__)
#define mexSubsReference(prhs, sub, nsubs)    mexSubsReference_d(prhs, sub, nsubs, __FILE__, __LINE__)
#define mexWarnMsgTxt(str)		 		mexWarnMsgTxt_d(str, __FILE__, __LINE__)
#endif

#endif /* mex_h */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
婷婷激情综合网| 亚洲日本成人在线观看| 日本特黄久久久高潮| 91.xcao| 天天操天天干天天综合网| 欧美日韩亚洲综合一区二区三区| 亚洲大片一区二区三区| 欧美成人在线直播| 成人妖精视频yjsp地址| 中文字幕亚洲成人| 欧美午夜寂寞影院| 美女精品一区二区| 亚洲精品一区二区三区香蕉| 不卡的av网站| 亚洲一区二区三区影院| 欧美一级xxx| 成人动漫一区二区| 亚洲曰韩产成在线| 日韩精品在线网站| 99精品国产热久久91蜜凸| 亚洲图片欧美视频| 精品对白一区国产伦| 不卡一区二区在线| 亚洲午夜免费视频| 久久婷婷国产综合精品青草| 色噜噜夜夜夜综合网| 秋霞成人午夜伦在线观看| 欧美激情一区二区三区在线| 一本色道亚洲精品aⅴ| 久久综合综合久久综合| 国产精品久久久久久妇女6080 | 国产一区二区三区免费看| 国产欧美一区在线| 欧美精品久久一区| 国产成人免费xxxxxxxx| 亚洲成av人片一区二区三区| 久久精品亚洲国产奇米99| 91成人免费在线| 国产一区二区精品久久99| 亚洲另类色综合网站| 精品国产髙清在线看国产毛片| 91视频免费观看| 国产一区二区看久久| 天使萌一区二区三区免费观看| 亚洲国产精品高清| 日韩欧美123| 欧美在线观看视频一区二区| 国产成人精品一区二区三区网站观看| 一区二区三区精品视频在线| 国产视频一区在线观看| 欧美一区二区三区日韩| 日本精品裸体写真集在线观看| 国产一区二区伦理| 久久精品国产精品亚洲红杏| 国产精品资源在线看| 一区二区三区蜜桃| 国产免费成人在线视频| 欧美不卡一区二区| 在线播放91灌醉迷j高跟美女| 99免费精品在线观看| 从欧美一区二区三区| 久久99日本精品| 美腿丝袜亚洲综合| 午夜激情一区二区三区| 一区二区欧美国产| 亚洲视频一二三区| 中文字幕一区二区三区在线观看| 久久午夜电影网| 久久久久久黄色| 久久无码av三级| 日本一区二区免费在线 | 国产综合色产在线精品| 日韩精品乱码免费| 亚洲18色成人| 性做久久久久久| 偷拍一区二区三区四区| 五月天久久比比资源色| 一区二区三区高清| 亚洲综合色噜噜狠狠| 亚洲一二三区视频在线观看| 亚洲在线观看免费| 亚洲不卡一区二区三区| 亚洲国产wwwccc36天堂| 视频一区二区中文字幕| 日韩成人免费电影| 国产在线精品免费av| 国产真实精品久久二三区| 国产在线乱码一区二区三区| 国产福利精品导航| 成人少妇影院yyyy| 日本韩国精品一区二区在线观看| 91国产丝袜在线播放| 欧美日韩高清在线| 欧美一级免费大片| 精品国产3级a| ...av二区三区久久精品| 亚洲一区在线观看免费观看电影高清| 亚洲最新在线观看| 日韩电影免费在线观看网站| 精品一区二区免费| 成人av在线影院| 91黄色免费观看| 日韩视频免费观看高清完整版在线观看| 91精品欧美一区二区三区综合在 | 在线电影院国产精品| 日韩精品在线看片z| 国产精品久久久爽爽爽麻豆色哟哟| 亚洲欧洲综合另类在线| 午夜视频一区二区三区| 国产在线一区观看| 色综合久久久久综合体桃花网| 欧美日韩一区中文字幕| 精品国产一区久久| 日韩一区在线看| 日韩极品在线观看| 国产精品2024| 欧美视频在线一区二区三区 | 日韩精品三区四区| 丰满亚洲少妇av| 欧美精品 日韩| 国产精品欧美极品| 视频一区中文字幕| 国产一区啦啦啦在线观看| 99精品1区2区| 精品国产91洋老外米糕| 亚洲女人小视频在线观看| 日本不卡一区二区三区| 一本大道av伊人久久综合| 91精品国产高清一区二区三区| 亚洲国产高清aⅴ视频| 日韩精品一级中文字幕精品视频免费观看 | 精品国产乱码久久久久久图片| 亚洲欧洲制服丝袜| 国产精品一区二区三区网站| 欧美日韩另类国产亚洲欧美一级| 国产蜜臀av在线一区二区三区| 亚洲精品视频在线| 成人动漫视频在线| 精品国精品国产尤物美女| 亚洲第一成人在线| 一本高清dvd不卡在线观看| 精品国产1区二区| 日韩国产欧美三级| 91视频精品在这里| 国产亚洲欧美激情| 伦理电影国产精品| 欧美精选在线播放| 亚洲一区在线电影| 色综合天天性综合| 91麻豆精品国产91久久久久| 中文字幕在线不卡一区| 久久99精品国产麻豆婷婷洗澡| 欧美色综合久久| 亚洲日本在线a| 国产精品2024| 2020国产精品自拍| 日本人妖一区二区| 制服丝袜一区二区三区| 亚洲成人av资源| 欧美日韩视频一区二区| 亚洲欧美激情插 | 亚洲午夜成aⅴ人片| 91尤物视频在线观看| 中文字幕日韩一区二区| 国产999精品久久| 国产午夜亚洲精品理论片色戒 | 久久国产夜色精品鲁鲁99| 欧美精品自拍偷拍| 石原莉奈在线亚洲三区| 91麻豆精品国产自产在线观看一区| 亚洲小少妇裸体bbw| 欧美日韩久久久| 奇米精品一区二区三区在线观看| 欧美一级日韩免费不卡| 青青草97国产精品免费观看无弹窗版| 欧美日韩高清一区| 青椒成人免费视频| 精品少妇一区二区三区在线播放| 青青草97国产精品免费观看| 日韩精品一区在线| 国产成人综合自拍| 国产精品污www在线观看| av午夜精品一区二区三区| 一区二区三区四区不卡在线| 色婷婷国产精品综合在线观看| 亚洲综合色噜噜狠狠| 欧美日韩黄色一区二区| 美美哒免费高清在线观看视频一区二区 | 国产精品日产欧美久久久久| 色综合中文字幕国产 | 一区二区三区四区激情| 欧美无乱码久久久免费午夜一区| 亚洲电影欧美电影有声小说| 日韩精品中文字幕在线不卡尤物| 国产精品一区二区91| 中文字幕一区二区三| 在线亚洲高清视频| 青青草原综合久久大伊人精品| 久久色中文字幕| 91小视频在线观看|